umami/components/layout/ButtonLayout.module.css
2022-03-01 19:28:44 -08:00

22 lines
237 B
CSS

.buttons {
display: flex;
align-items: center;
width: 100%;
}
.buttons button + * {
margin-left: 10px;
}
.center {
justify-content: center;
}
.left {
justify-content: flex-start;
}
.right {
justify-content: flex-end;
}