mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-13 20:32:30 -05:00
Fix the login page on mobile
This commit is contained in:
parent
bb3b6fcbe1
commit
0c5cd33462
2 changed files with 5 additions and 3 deletions
2
resources/assets/sass/dashboard.scss
vendored
2
resources/assets/sass/dashboard.scss
vendored
|
@ -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;
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue