Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2020-07-31 14:29:01 +0300
committerGitHub <noreply@github.com>2020-07-31 14:29:01 +0300
commit2bceb3e79d848a101e7aa5fc4b2020e681b1dfc3 (patch)
treeed1acfbc2cac7d80319f0b8300ae2ba32da22d34 /scss/_toasts.scss
parent23c38068644438b1fb3901aa9572498b6a317933 (diff)
Remove overflow: hidden from toasts (#31381)
Diffstat (limited to 'scss/_toasts.scss')
-rw-r--r--scss/_toasts.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_toasts.scss b/scss/_toasts.scss
index a0b11c9f9d..4db51b6b04 100644
--- a/scss/_toasts.scss
+++ b/scss/_toasts.scss
@@ -1,6 +1,5 @@
.toast {
max-width: $toast-max-width;
- overflow: hidden; // cheap rounded corners on nested items
@include font-size($toast-font-size);
color: $toast-color;
background-color: $toast-background-color;
@@ -36,6 +35,7 @@
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));
}
.toast-body {