Fix typo in classname that prevented explicit dismissal button not being styled correctly (https://github.com/woocommerce/woocommerce-admin/pull/5700)

This commit is contained in:
Matt Sherman 2020-11-19 19:01:57 -05:00 committed by GitHub
parent daebc45ac9
commit 64b40a9e39
1 changed files with 3 additions and 5 deletions

View File

@ -1,16 +1,14 @@
.woocommerce-transient-notices {
position: fixed;
bottom: $gap-small;
left: 176px;
z-index: 99999;
@media (max-width: 960px) {
@media ( max-width: 960px ) {
left: 50px;
}
@media (max-width: 782px) {
@media ( max-width: 782px ) {
left: $gap;
}
@ -39,7 +37,7 @@
left: 26px;
}
.components-snackbar__dismiss_button {
.components-snackbar__dismiss-button {
margin-left: 32px;
cursor: pointer;
}