umami/components/layout/ButtonLayout.module.css

21 lines
222 B
CSS
Raw Normal View History

.buttons {
display: flex;
2020-09-16 04:16:05 +02:00
align-items: center;
}
2020-09-16 04:16:05 +02:00
.buttons button + * {
margin-left: 10px;
}
2020-09-22 06:34:55 +02:00
.center {
justify-content: center;
}
.left {
justify-content: flex-start;
}
.right {
justify-content: flex-end;
}