From: Mark Otto Date: Wed, 19 Sep 2018 05:00:22 +0000 (-0700) Subject: Nest the `.toast.show` and use `display: block;` as inherit causes broken styles X-Git-Tag: v4.2.0~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab40a2b9195df534b5e0c4c9e86c8641e45cf091;p=thirdparty%2Fbootstrap.git Nest the `.toast.show` and use `display: block;` as inherit causes broken styles --- diff --git a/scss/_toasts.scss b/scss/_toasts.scss index 5ec9cab43a..d6ba4ca141 100644 --- a/scss/_toasts.scss +++ b/scss/_toasts.scss @@ -13,10 +13,10 @@ + .toast { margin-top: $toast-padding-x; } -} -.toast.show { - display: inherit; + &.show { + display: block; + } } .toast-header {