- Created entities & new migration - Added packages symfony/stimulus-bundle & symfony/webpack-encore-bundle
68 lines
1.6 KiB
SCSS
68 lines
1.6 KiB
SCSS
body {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
// customize some Bootstrap variables
|
|
$primary: darken(#428bca, 20%);
|
|
|
|
// the ~ allows you to reference things in node_modules
|
|
@import "~bootstrap/scss/bootstrap";
|
|
@import '~mdb-ui-kit/css/mdb.min.css';
|
|
|
|
// importing core styling file
|
|
@import "~fontawesome-free/scss/fontawesome.scss";
|
|
|
|
// our project needs Classic Solid, Brands, and Sharp Solid
|
|
@import "~fontawesome-free/scss/solid.scss";
|
|
@import "~fontawesome-free/scss/brands.scss";
|
|
@import "~fontawesome-free/scss/regular.scss";
|
|
|
|
/* for login page */
|
|
.gradient-custom {
|
|
/* fallback for old browsers */
|
|
background: #6a11cb;
|
|
|
|
/* Chrome 10-25, Safari 5.1-6 */
|
|
background: -webkit-linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));
|
|
|
|
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
|
|
background: linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1))
|
|
}
|
|
|
|
@media (min-width: 991.98px) {
|
|
main {
|
|
padding-left: 240px;
|
|
}
|
|
}
|
|
|
|
/* Sidebar */
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 58px 0 0; /* Height of navbar */
|
|
box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
|
|
width: 240px;
|
|
z-index: 600;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.sidebar {
|
|
width: 100%;
|
|
}
|
|
}
|
|
.sidebar .active {
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
|
|
}
|
|
|
|
.sidebar-sticky {
|
|
position: relative;
|
|
top: 0;
|
|
height: calc(100vh - 48px);
|
|
padding-top: 0.5rem;
|
|
overflow-x: hidden;
|
|
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
|
|
}
|