21 lines
243 B
CSS
21 lines
243 B
CSS
|
|
.buttons-toolbar {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
|
||
|
|
.left-group {
|
||
|
|
display: flex;
|
||
|
|
flex: 1;
|
||
|
|
justify-content: flex-start;
|
||
|
|
}
|
||
|
|
|
||
|
|
.right-group {
|
||
|
|
display: flex;
|
||
|
|
flex: 1;
|
||
|
|
justify-content: flex-end;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|