LinkStack/assets/scss/utilities/_position.scss
Julian Prieber 5dbb2b182d Version 4.0
-- Dashboard Update --

Update to version 4.0.0.
Complete redesign of the admin panel.
New features and a license change.
2023-04-26 15:44:39 +02:00

10 lines
135 B
SCSS
Vendored

/* Vertical Position */
.absolute-middle {
top: 50%;
transform: translateY(-50%);
}
.absolute-bottom {
top: auto;
bottom: 0;
}