You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
507 B
SCSS

.page-box {
min-height: 100vh !important;
}
.flex {
display: flex;
}
.flex-1 {
flex: 1;
}
.flex-row {
flex-direction: row;
}
.flex-col {
flex-direction: column;
}
.justify-around {
justify-content: space-around;
}
.items-center {
align-items: center;
}
.flex-x-between {
justify-content: space-between;
}
.flex-x-end {
justify-content: flex-end;
}
.flex-x-center {
justify-content: center;
}
.flex-y-center {
align-items: center;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}