umami/components/layout/ButtonLayout.module.css

22 lines
237 B
CSS
Raw Normal View History

.buttons {
display: flex;
2020-09-16 04:16:05 +02:00
align-items: center;
2022-03-02 04:28:44 +01:00
width: 100%;
}
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;
}