comty/packages/app/src/styles/layout.less
2024-11-04 13:02:37 +00:00

84 lines
962 B
Plaintext

// DIMENSIONS
// WIDTH
.w-100 {
width: 100%;
}
// HEIGHT
.h-100 {
height: 100%;
}
// FLEX
.flex-row {
display: flex;
flex-direction: row;
align-items: center;
}
.flex-column {
display: flex;
flex-direction: column;
align-items: center;
}
// ALINGMENT
.align-start {
align-items: flex-start;
}
.align-center {
align-items: center;
}
.align-end {
align-items: flex-end;
}
// JUSTIFICATION
.justify-center {
justify-content: center;
}
.justify-start {
justify-content: flex-start;
}
.justify-end {
justify-content: flex-end;
}
.justify-space-between {
justify-content: space-between;
}
.justify-space-around {
justify-content: space-around;
}
.justify-space-evenly {
justify-content: space-evenly;
}
// GAPS
.gap-20,
.gap20 {
gap: 20px;
}
.gap-10,
.gap10 {
gap: 10px;
}
.gap-5,
.gap5 {
gap: 5px;
}
// COLORS & BG
.acrylic-bg {
background-color: rgba(var(--layoutBackgroundColor), 0.8) !important;
backdrop-filter: blur(3px);
}