fix overlay column size

This commit is contained in:
Eduard Heimbuch
2020-03-25 16:58:14 +01:00
parent 098142c815
commit c29cbfed84

View File

@@ -491,6 +491,16 @@ ul.is-separated {
}
}
.column.is-half-overlay {
.overlay-column {
width: calc(50% - 3rem);
@media screen and (max-width: 768px) {
width: calc(100% - 1.5rem);
}
}
}
.column.is-full .overlay-column {
width: calc(100% - 1.5rem);
}