Add spacing between toast buttons with cross browser support in mind

pull/21833/head
Germain Souquet 2021-06-29 11:59:13 +01:00
parent b70297c510
commit 4cfdad8aa2
1 changed files with 4 additions and 1 deletions

View File

@ -134,12 +134,15 @@ limitations under the License.
.mx_Toast_buttons {
float: right;
display: flex;
gap: 5px;
.mx_AccessibleButton {
min-width: 96px;
box-sizing: border-box;
}
.mx_AccessibleButton + .mx_AccessibleButton {
margin-left: 5px;
}
}
.mx_Toast_description {