This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
kspace-wordpress-theme/scss/components/_toasts.scss

25 lines
485 B
SCSS

@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 {
background-color: var(--accent-color);
color: var(--text-color-contrast);
}
code {
font-family: monospace, monospace;
}