24 lines
396 B
SCSS
24 lines
396 B
SCSS
/* Fonts */
|
|
@import "fonts";
|
|
|
|
/* Bootstrap custom variable overrides */
|
|
@import "bs-custom";
|
|
|
|
/* Bootstrap v5 scss */
|
|
@import "~bootstrap/scss/bootstrap";
|
|
|
|
/*SVG ICON SYSTEM*/
|
|
@import "svg-icons";
|
|
|
|
/* LiveView specific CSS */
|
|
@import "phx-liveview";
|
|
|
|
/* Alerts and form errors */
|
|
.alert:empty {
|
|
display: none;
|
|
}
|
|
.invalid-feedback {
|
|
color: #a94442;
|
|
display: block;
|
|
margin: -1rem 0 2rem;
|
|
}
|