@oardi/css-utils 0.23.0 → 0.23.4

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.23.0",
3
+ "version": "0.23.4",
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",
@@ -1,6 +1,6 @@
1
1
  .card {
2
2
  --card-bg-color: var(--white);
3
- --card-border-color: transparent;
3
+ --card-border-color: var(--gray-90);
4
4
  --card-border-width: 1px;
5
5
  --card-body-padding: 1rem;
6
6
 
@@ -1,5 +1,6 @@
1
1
  .navbar {
2
2
  --nav-bg-color: #ffffff;
3
+ --nav-border-bottom: var(--gray-90);
3
4
 
4
5
  padding-top: 0.6rem;
5
6
  padding-bottom: 0.6rem;
@@ -7,6 +8,7 @@
7
8
  min-height: 60px;
8
9
  display: flex;
9
10
  align-items: center;
11
+ border-bottom: 1px solid var(--nav-border-bottom);
10
12
  }
11
13
 
12
14
  .navbar .logo:hover {
package/scss/reboot.scss CHANGED
@@ -85,6 +85,7 @@ textarea {
85
85
  [type='submit'],
86
86
  button {
87
87
  -webkit-appearance: button;
88
+ appearance: button;
88
89
  }
89
90
 
90
91
  legend {
@@ -102,6 +103,7 @@ progress {
102
103
 
103
104
  [type='search'] {
104
105
  -webkit-appearance: textfield;
106
+ appearance: textfield;
105
107
  outline-offset: -2px;
106
108
  }
107
109
 
package/scss/theme.scss CHANGED
@@ -12,15 +12,15 @@ $theme: (
12
12
  error: #ffffff,
13
13
  ),
14
14
  grays: (
15
- 10: hsl(210, 10%, 10%),
16
- 20: hsl(210, 10%, 15%),
17
- 30: hsl(210, 10%, 30%),
18
- 40: hsl(210, 10%, 40%),
19
- 50: hsl(210, 10%, 50%),
20
- 60: hsl(210, 10%, 60%),
21
- 70: hsl(210, 10%, 70%),
22
- 80: hsl(210, 10%, 80%),
23
- 90: hsl(210, 10%, 90%),
15
+ 10: hsl(0, 0%, 10%),
16
+ 20: hsl(0, 0%, 20%),
17
+ 30: hsl(0, 0%, 30%),
18
+ 40: hsl(0, 0%, 40%),
19
+ 50: hsl(0, 0%, 50%),
20
+ 60: hsl(0, 0%, 60%),
21
+ 70: hsl(0, 0%, 70%),
22
+ 80: hsl(0, 0%, 80%),
23
+ 90: hsl(0, 0%, 90%),
24
24
  ),
25
25
  directions: (
26
26
  t: top,
@@ -22,7 +22,7 @@
22
22
  --black: #000000;
23
23
 
24
24
  --font-color: var(--gray-10);
25
- --body-bg-color: #f9f9f9;
25
+ --body-bg-color: #ffffff;
26
26
 
27
27
  --highlight: rgba(189, 189, 189, 0.1);
28
28
  --border-radius: 6px;