Sha256: 1d1deeb556183cc0382ae670325894bb34fdff8e0d3054a4174f2ce9bf7d007f
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
.toast { max-width: $toast-max-width; @include font-size($toast-font-size); color: $toast-color; background-color: $toast-background-color; background-clip: padding-box; border: $toast-border-width solid $toast-border-color; box-shadow: $toast-box-shadow; opacity: 0; @include border-radius($toast-border-radius); &:not(:last-child) { margin-bottom: $toast-padding-x; } &.showing { opacity: 1; } &.show { display: block; opacity: 1; } &.hide { display: none; } } .toast-header { display: flex; align-items: center; padding: $toast-padding-y $toast-padding-x; color: $toast-header-color; background-color: $toast-header-background-color; background-clip: padding-box; border-bottom: $toast-border-width solid $toast-header-border-color; @include border-top-radius(subtract($toast-border-radius, $toast-border-width)); .btn-close { margin-right: $toast-padding-x / -2; margin-left: $toast-padding-x; } } .toast-body { padding: $toast-padding-x; // apply to both vertical and horizontal }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bootstrap-5.0.0.alpha3 | assets/stylesheets/bootstrap/_toasts.scss |
bootstrap-5.0.0.alpha2 | assets/stylesheets/bootstrap/_toasts.scss |