52 lines
538 B
SCSS
52 lines
538 B
SCSS
|
.l-wrapper {
|
||
|
width: 100%;
|
||
|
max-width: 90rem;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
// #position
|
||
|
|
||
|
.l-absolute {
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
.l-relative {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
// #sizes
|
||
|
|
||
|
.l-screen-full {
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
// #flex
|
||
|
|
||
|
.l-flex {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.l-flex-center {
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.l-justify-around {
|
||
|
justify-content: space-around;
|
||
|
}
|
||
|
|
||
|
.l-flex-column {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.l-flex-row {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
.l-flex-wrap {
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|