Fix the login page on mobile

This commit is contained in:
Kevin MacMartin 2018-01-21 21:36:37 -05:00
parent bb3b6fcbe1
commit 0c5cd33462
2 changed files with 5 additions and 3 deletions

View file

@ -102,8 +102,10 @@ body {
.panel-body { .panel-body {
background-color: lighten($c-dashboard-light, 1%); background-color: lighten($c-dashboard-light, 1%);
@media (max-width: $screen-xs-max) { &.dashboard {
padding: 0px; @media (max-width: $screen-xs-max) {
padding: 0px;
}
} }
.search { .search {

View file

@ -13,7 +13,7 @@
</div> </div>
</div> </div>
<div class="panel-body"> <div class="panel-body dashboard">
@yield('dashboard-body') @yield('dashboard-body')
</div> </div>
</div> </div>