1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// hi-components/src/layout/flex.scss // FlexBox component styles @use 'variables' as vars; // ------ // FlexBox Component // ------ .hk-flex { display: flex; box-sizing: border-box; } .hk-flex-inline { display: inline-flex; box-sizing: border-box; }