Commit 37671377 authored by Enrique Alcantara's avatar Enrique Alcantara Committed by Paul Slaughter

Fix rem / px mismatch

parent d7a8e28c
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
position: absolute; position: absolute;
top: $gl-padding; top: $gl-padding;
bottom: $gl-padding; bottom: $gl-padding;
left: map-get($spacers, 2) - 1px; left: map-get($spacers, 2) - px-to-rem(1px);
} }
&-row { &-row {
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
* 2px extra is to give a little more height than needed * 2px extra is to give a little more height than needed
* to hide timeline line before/after the element starts/ends * to hide timeline line before/after the element starts/ends
*/ */
height: map-get($spacers, 4) + 2px; height: map-get($spacers, 4) + px-to-rem(2px);
z-index: 1; z-index: 1;
position: relative; position: relative;
top: -3px; top: -3px;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment