13 lines
229 B
CSS
13 lines
229 B
CSS
|
.button-group {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: nowrap;
|
||
|
justify-content: flex-start;
|
||
|
align-items: stretch;
|
||
|
align-content: stretch;
|
||
|
}
|
||
|
|
||
|
.button-group > * {
|
||
|
flex: 1 1 auto;
|
||
|
margin: 0;
|
||
|
}
|