ptitlutins/ptitlutin/app/assets/styles.css
2025-07-19 19:10:28 +02:00

40 lines
No EOL
387 B
CSS

body {
}
.flex {
display: flex;
}
.flex.col {
flex-direction: column;
}
.flex.row {
flex-direction: row;
}
.flex .flex1 {
flex: 1;
}
.flex.align-center {
align-items: center;
}
.flex.center {
justify-content: center;
align-items: center;
}
.flex.small-gap {
gap: 0.5rem;
}
.flex.medium-gap {
gap: 1rem;
}
.flex.large-gap {
gap: 2rem;
}