hikari-components 0.1.8

Core UI components (40+) for the Hikari design system
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
// ============================================

.hi-flex {
  display: flex;
  box-sizing: border-box;
}

.hi-flex-inline {
  display: inline-flex;
  box-sizing: border-box;
}