Layout changes finally work from backend commands

This commit is contained in:
Gabor PEK
2018-04-20 09:26:36 +02:00
committed by Kristóf Tóth
parent a0d5dfdddc
commit f0717eb235
7 changed files with 17 additions and 9 deletions

View File

@ -105,7 +105,10 @@ $layouts: (
@each $k, $v in $map {
#{$sel}#{$k} {
@if (length($v) == 0) {
display: none
// We need to make sure the DOM element is displayed but not visible
visibility: hidden;
position: absolute;
z-index: -10000000;
}
@else {
grid-column-start: nth($v, 1);