Sha256: b8a504f43bd77444be8fbdf9d8724be285bda8dfb3c08a10007c21b01fc1794f
Contents?: true
Size: 973 Bytes
Versions: 2
Compression:
Stored size: 973 Bytes
Contents
/* ======================================== border ---------------------------------------- Also applies `solid` Needs to come before other border utils ---------------------------------------- usage: .border-[modifier]*-[key] ---------------------------------------- output: border-[modifier]: [value]; ---------------------------------------- example: .border-t-1px { border-top: 1px solid; } .border-0 { border: none; } ---------------------------------------- */ $u-border: ( border: ( base: "border", modifiers: ( noModifier: "", "y": ( "-top", "-bottom" ), "x": ( "-left", "-right" ), "top": "-top", "right": "-right", "bottom": "-bottom", "left": "-left" ), values: map-collect(get-palettes($border-palettes), $border-manual-values), valueAppend: " solid", settings: $border-settings, property: "border", type: "utility" ) );
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
uswds-jekyll-5.0.1 | _sass/uswds/src/utilities/rules/border.scss |
uswds-jekyll-5.0.0 | _sass/uswds/src/utilities/rules/border.scss |