0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 18:02:39 +00:00

Parametrize fillMode for .useColumns

A @fillMode parameter for .useColumns9) allows setting 
`column-fill` property to `balance` for wide statblocks (or other
wide column types) instead of relying on Chrome's fallback
behavior that ignores `auto` when there's no set container height.
Set the default for the for `@fillMode` to `auto` to maintain the
current behavior.
This commit is contained in:
James Socol
2021-02-20 14:04:54 -05:00
committed by GitHub
parent 009a11a9f5
commit 5c4da77357

View File

@@ -26,9 +26,9 @@ body {
letter-spacing : -0.02em; letter-spacing : -0.02em;
} }
} }
.useColumns(@multiplier : 1){ .useColumns(@multiplier : 1, @fillMode: auto){
column-count : 2; column-count : 2;
column-fill : auto; column-fill : @fillMode;
column-gap : 1cm; column-gap : 1cm;
column-width : 8cm * @multiplier; column-width : 8cm * @multiplier;
-webkit-column-count : 2; -webkit-column-count : 2;
@@ -272,7 +272,7 @@ body {
} }
//Full Width //Full Width
hr+hr+blockquote{ hr+hr+blockquote{
.useColumns(0.96); .useColumns(0.96, @fillMode: balance);
} }
//***************************** //*****************************
// * FOOTER // * FOOTER