umami/components/layout/ButtonLayout.module.css
2020-09-21 21:34:55 -07:00

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;
}