mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
21 lines
222 B
CSS
21 lines
222 B
CSS
.buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.buttons button + * {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.left {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.right {
|
|
justify-content: flex-end;
|
|
}
|