mirror of https://github.com/akveo/blur-admin
fix(mobile): fix backgroud size
parent
333be7f516
commit
885f33c5c7
Binary file not shown.
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 223 KiB |
|
@ -25,6 +25,7 @@
|
|||
<!-- endbuild -->
|
||||
</head>
|
||||
<body ng-class="{'mobile' : $isMobile}">
|
||||
<div class="body-bg"></div>
|
||||
<main ng-if="$pageFinishedLoading" ng-class="{ 'menu-collapsed': $isMenuCollapsed }">
|
||||
|
||||
<sidebar></sidebar>
|
||||
|
|
|
@ -36,6 +36,9 @@ a {
|
|||
outline: 0 !important;
|
||||
}
|
||||
|
||||
.body-bg{
|
||||
display: none;
|
||||
}
|
||||
.al-header {
|
||||
display: block;
|
||||
height: 49px;
|
||||
|
|
|
@ -1,6 +1,15 @@
|
|||
body.badmin-transparent {
|
||||
&.mobile{
|
||||
background-image: url($images-root + 'blur-bg-mobile.jpg');
|
||||
background: none;
|
||||
.body-bg{
|
||||
display: block;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
@include main-background();
|
||||
}
|
||||
.panel-blur {
|
||||
background: transparent;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue