qdouze-bludit-theme/scss/components/_toasts.scss
2024-04-10 20:54:20 +02:00

33 lines
No EOL
481 B
SCSS
Executable file

@mixin well() {
border: 0;
border-radius: $well-radius;
margin: 0 0 $lineheight 0;
padding: $lineheight 1rem $lineheight 1rem;
max-width: 100%;
font-style: italic;
@include background-color($color-background-alt);
box-shadow: $narrow-shadow;
}
blockquote,
.quote,
.well,
pre,
.pre,
.well-pre,
.toast,
.code {
@include well();
}
.toast {
font-size: 0.8rem;
line-height: 1.5em;
padding: $card-smallpad * 2;
}
code {
font-family: monospace, monospace;
}