Fixed default value for vertically aligned items

This commit is contained in:
Alejandro Celaya 2020-03-07 12:07:51 +01:00
parent 6ac89334fd
commit f4cc8d3a0c

View file

@ -1,4 +1,4 @@
@mixin vertical-align($extraTransforms: '') {
@mixin vertical-align($extraTransforms: null) {
position: absolute;
top: 50%;
transform: translateY(-50%) $extraTransforms;