mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-16 18:20:41 +00:00
87 lines
965 B
SCSS
87 lines
965 B
SCSS
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-inline {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.flex-auto {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-25 {
|
|
flex: 1 1 25%;
|
|
}
|
|
|
|
.flex-even {
|
|
flex: 1 1;
|
|
}
|
|
|
|
.flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flex-grid {
|
|
flex-direction: column;
|
|
border: $border-1 solid var(--accent-color);
|
|
border-radius: $border-radius;
|
|
background: var(--accent-color-lite);
|
|
}
|
|
|
|
.flex-gap {
|
|
flex-wrap: wrap;
|
|
gap: $padding-16;
|
|
}
|
|
|
|
.justify-start {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.justify-end {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.justify-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.justify-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.mx-auto {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.no-wrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.svg-sprite {
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.table-wrap {
|
|
overflow: auto;
|
|
}
|