pico
pico copied to clipboard
Allow Grid in classless by $forceGrid flag
Please search for duplicate or closed issues first.
Describe the issue
When using classless version of Pico you cant import grid.scss because condition will never match.
Grid uses a class though but this single class would be acceptable.
@if ($enable-classes and $enable-grid) {
Adding an additional $forceGrid param here would allow this.
@if (($enable-classes and $enable-grid) or $forceGrid) {
Current Behavior
Grid import is not possible in classless.
Expected Behavior
Allow Grid import in classless.