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,9 +102,11 @@ body {
.panel-body { .panel-body {
background-color: lighten($c-dashboard-light, 1%); background-color: lighten($c-dashboard-light, 1%);
&.dashboard {
@media (max-width: $screen-xs-max) { @media (max-width: $screen-xs-max) {
padding: 0px; padding: 0px;
} }
}
.search { .search {
margin-bottom: 10px; margin-bottom: 10px;

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>