$border-unit: 1px !default;
// Point-Grid System
// Use multiples of this value to define dimensions, padding, and margin of both block and inline elements.
// Learn more here: https://builttoadapt.io/intro-to-the-8-border-grid-system-d2573cde8632

$border-size-data: (
        none: 0,
        xxs:  rem($border-unit * 0.5), // 0.5px
        xs:   rem($border-unit),     // 1px
        s:    rem($border-unit * 1.5), // 1.5px
        m:    rem($border-unit * 2), // 2px
        l:    rem($border-unit * 2.5), // 2.5px
        xl:   rem($border-unit * 3), // 3px
        xxl:  rem($border-unit * 4)  // 3.5px
) !default;
