fuse-angular/src/app/main/content/pages/maintenance/maintenance.component.scss
Sercan Yemen 6747610771 Fixed: Fullwidth simple page layout doesn't scroll
+ Added: New logo to the various pages
+ Fixed: Mobile zoom is not disabled
+ Fixed: Profile timeline mobile order is not correct
+ Fixed: Quickpanel focusses to the form elements causing it to scroll on mobile devices when opened
+ Various demo page mobile fixes
2017-09-22 16:04:59 +03:00

50 lines
1.2 KiB
SCSS

@import "src/app/core/scss/fuse";
:host {
#maintenance {
width: 100%;
overflow: auto;
background: url('/assets/images/backgrounds/march.jpg') no-repeat;
background-size: cover;
#maintenance-form-wrapper {
flex: 1 0 auto;
padding: 32px;
@include media-breakpoint('xs') {
padding: 16px;
}
#maintenance-form {
max-width: 384px;
padding: 48px;
background: #FFFFFF;
text-align: center;
@include mat-elevation(7);
@include media-breakpoint('xs') {
padding: 24px;
width: 100%;
}
.logo {
width: 128px;
margin: 32px auto;
}
.title {
font-size: 17px;
margin-top: 16px;
}
.subtitle {
margin: 16px 0;
max-width: 300px;
color: rgba(0, 0, 0, 0.54);
font-size: 15px;
}
}
}
}
}