2021-03-13 17:27:51 +01:00

23 lines
276 B
CSS

.text-center {
text-align: center;
}
.pt-1 {
padding-top: 1em;
}
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.justify-content-center {
justify-content: center;
}
.align-items-center {
align-items: center;
}