mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
+ 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
50 lines
1.2 KiB
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |