props/MultiShop/client/src/assets/scss/main.scss

26 lines
573 B
SCSS
Raw Normal View History

@use "app-layout";
@use "themer";
@use "../../../node_modules/bootstrap/scss/bootstrap";
@import "../../../node_modules/bootstrap-icons/font/bootstrap-icons.css";
nav.navbar {
@extend .navbar-expand-lg;
@include themer.themed {
@extend .navbar-light;
background-color: themer.color-of("navbar");
}
}
.jumbotron {
@extend .container-fluid;
@extend .p-4;
@include themer.themed {
}
}
#content {
@include themer.themed {
background-color: themer.color-of("background");
color: themer.color-of("text");
}
}