mirror of
https://github.com/zhigang1992/umami.git
synced 2026-04-09 09:41:18 +08: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;
|
|
}
|