mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-22 13:54:07 +00:00
39 lines
604 B
SCSS
Vendored
39 lines
604 B
SCSS
Vendored
// Theme White
|
|
|
|
// Variables
|
|
|
|
$app-container-bg: #f1f4f6;
|
|
$app-sidebar-bg: #ffffff;
|
|
$app-header-bg: #fafbfc;
|
|
$app-header-logo-bg: rgba(255, 255, 255, .9);
|
|
|
|
// Content
|
|
|
|
.app-theme-white {
|
|
|
|
&.app-container {
|
|
background: $app-container-bg;
|
|
}
|
|
|
|
.app-sidebar {
|
|
.app-sidebar-content {
|
|
background: $app-sidebar-bg;
|
|
}
|
|
}
|
|
|
|
.app-inner-layout__wrapper {
|
|
border-bottom: $gray-200 solid 1px;
|
|
}
|
|
|
|
.app-page-title {
|
|
background: rgba(255, 255, 255, .45);
|
|
}
|
|
|
|
.app-sidebar .app-header__logo,
|
|
.app-footer .app-footer__inner,
|
|
.app-header {
|
|
background: $app-header-bg;
|
|
}
|
|
|
|
}
|