mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-08 09:17:29 +03:00
5 lines
132 B
SCSS
5 lines
132 B
SCSS
@mixin vertical-align($extraTransforms: null) {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%) $extraTransforms;
|
|
}
|