ui: reasonable default padding

This commit is contained in:
Jeremy Wall 2024-02-20 20:53:07 -05:00
parent f32a221022
commit aa1f4f5795

View File

@ -1,18 +1,22 @@
body * {
padding-left: .3em;
padding-right: .3em;
}
.column-flex { .column-flex {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.row-flex { .row-flex {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
} }
.flex-item-grow { .flex-item-grow {
flex: 1 0 auto; flex: 1 0 auto;
} }
.flex-item-shrink { .flex-item-shrink {
flex: 0 1 auto; flex: 0 1 auto;
} }