@oardi/css-utils 0.24.1 → 0.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oardi/css-utils",
3
- "version": "0.24.1",
3
+ "version": "0.25.0",
4
4
  "author": "Ardian Shala",
5
5
  "homepage": "https://css-utils.oardi.com",
6
6
  "description": "Powerful set of semantic css classes with support for breakpoints, directions and spacings",
package/scss/index.scss CHANGED
@@ -9,3 +9,18 @@
9
9
  @use './flex-responsive.scss';
10
10
  @use './grid.scss';
11
11
  @use './grid-responsive.scss';
12
+
13
+ @use './components/breadcrumb.scss';
14
+ @use './components/button.scss';
15
+ @use './components/card.scss';
16
+ @use './components/chip.scss';
17
+ @use './components/drawer.scss';
18
+ @use './components/expansion-panel.scss';
19
+ @use './components/form.scss';
20
+ @use './components/icon-button.scss';
21
+ @use './components/list.scss';
22
+ @use './components/navbar.scss';
23
+ @use './components/overlay.scss';
24
+ @use './components/tabs.scss';
25
+ @use './components/table.scss';
26
+ @use './components/toast.scss';
@@ -4,11 +4,11 @@
4
4
  --font-weight: 400;
5
5
  --font-family: 'Inter', sans-serif;
6
6
 
7
- --h1: var(--font-weight) 2.3rem var(--font-family);
7
+ --h1: var(--font-weight) 2.25rem var(--font-family);
8
8
  --h2: var(--font-weight) 2rem var(--font-family);
9
- --h3: var(--font-weight) 1.8rem var(--font-family);
10
- --h4: var(--font-weight) 1.6rem var(--font-family);
11
- --h5: var(--font-weight) 1.4rem var(--font-family);
9
+ --h3: var(--font-weight) 1.5rem var(--font-family);
10
+ --h4: var(--font-weight) 1.4rem var(--font-family);
11
+ --h5: var(--font-weight) 1.3rem var(--font-family);
12
12
  --h6: var(--font-weight) 1.2rem var(--font-family);
13
13
  }
14
14
 
@@ -22,7 +22,7 @@ h3,
22
22
  h4,
23
23
  h5,
24
24
  h6 {
25
- margin: 0 0 0.75rem 0;
25
+ margin: 0;
26
26
  line-height: 1.2;
27
27
  }
28
28
 
@@ -30,32 +30,38 @@ h1,
30
30
  .h1 {
31
31
  font: var(--h1);
32
32
  letter-spacing: -1px;
33
+ margin-bottom: 1rem;
33
34
  }
34
35
 
35
36
  h2,
36
37
  .h2 {
37
38
  font: var(--h2);
39
+ margin-bottom: 0.875rem;
38
40
  }
39
41
 
40
42
  h3,
41
43
  .h3 {
42
44
  font: var(--h3);
45
+ margin-bottom: 0.75rem;
43
46
  }
44
47
 
45
48
  h4,
46
49
  .h4 {
47
50
  font: var(--h4);
51
+ margin-bottom: 0.5rem;
48
52
  }
49
53
 
50
54
  h5,
51
55
  .h5 {
52
56
  font: var(--h5);
57
+ margin-bottom: 0.4rem;
53
58
  }
54
59
 
55
60
  h6,
56
61
  .h6 {
57
62
  font: var(--h6);
58
63
  line-height: var(--line-height);
64
+ margin-bottom: 0.3rem;
59
65
  }
60
66
 
61
67
  a {
@@ -1,14 +0,0 @@
1
- @use './components/breadcrumb.scss';
2
- @use './components/button.scss';
3
- @use './components/card.scss';
4
- @use './components/chip.scss';
5
- @use './components/drawer.scss';
6
- @use './components/expansion-panel.scss';
7
- @use './components/form.scss';
8
- @use './components/icon-button.scss';
9
- @use './components/list.scss';
10
- @use './components/navbar.scss';
11
- @use './components/overlay.scss';
12
- @use './components/tabs.scss';
13
- @use './components/table.scss';
14
- @use './components/toast.scss';