10 lines
135 B
SCSS
10 lines
135 B
SCSS
|
/* Vertical Position */
|
||
|
.absolute-middle {
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
}
|
||
|
.absolute-bottom {
|
||
|
top: auto;
|
||
|
bottom: 0;
|
||
|
}
|