N°4247 - Button group: Make sure buttons of a same group always stay on the same line

This commit is contained in:
Molkobain
2021-09-15 15:40:29 +02:00
parent 0e35b8e4fa
commit b27aa70a1e
3 changed files with 23 additions and 4 deletions

View File

@@ -13,6 +13,9 @@ $ibo-button-group--elements-separator--width: 1px !default;
$ibo-button-group--elements-separator--border-left: 1px solid transparent !default;
.ibo-button-group {
display: flex; /* Ensure that buttons of a same group always stay on the same line */
flex-wrap: nowrap;
.ibo-button {
position: relative;
}