Fix snackbar icon position (#41399)

* Fix snackbar icon position

* Add changefile(s) from automation for the following project(s): woocommerce

* Remove absolute positioning

---------

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
berislav grgičak 2023-11-15 07:18:40 +01:00 committed by GitHub
parent 5d192d5ed6
commit d4bcae78f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -29,13 +29,13 @@
}
.components-snackbar__content-with-icon {
margin-left: 32px;
margin-left: 0;
}
.components-snackbar__icon {
position: absolute;
top: 24px;
left: 26px;
position: static;
display: inline-block;
margin-right: $grid-unit-20;
}
.components-snackbar__dismiss-button {

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Fix snackbar notice icon position.