doom-design-system 0.3.2 → 0.3.3

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.
@@ -19,7 +19,7 @@
19
19
  }
20
20
  .button:hover {
21
21
  transform: translate(-2px, -2px);
22
- box-shadow: var(--shadow-hover);
22
+ box-shadow: 6px 6px 0px 0px var(--border-strong);
23
23
  }
24
24
  .button:focus-visible {
25
25
  outline: none;
@@ -34,13 +34,15 @@
34
34
  padding: 0.75rem 1.5rem;
35
35
  text-transform: uppercase;
36
36
  letter-spacing: 0.05em;
37
- box-shadow: var(--shadow-hover);
37
+ box-shadow: var(--shadow-hard);
38
38
  font-size: 0.75rem;
39
39
  }
40
40
  .link.button:hover {
41
- filter: brightness(1.1);
42
41
  transform: translate(-2px, -2px);
43
- box-shadow: var(--shadow-hover);
42
+ box-shadow: 6px 6px 0px 0px var(--border-strong);
43
+ }
44
+ .link.button:hover {
45
+ filter: brightness(1.1);
44
46
  }
45
47
  .link.button:active {
46
48
  transform: translate(0, 0);
@@ -23,7 +23,7 @@
23
23
  }
24
24
  .button:hover:not(:disabled) {
25
25
  transform: translate(-2px, -2px);
26
- box-shadow: var(--shadow-sm);
26
+ box-shadow: var(--shadow-sm-hover);
27
27
  background-color: var(--primary);
28
28
  color: var(--primary-foreground);
29
29
  }
@@ -27,7 +27,7 @@
27
27
  }
28
28
  .trigger:hover {
29
29
  transform: translate(-2px, -2px);
30
- box-shadow: var(--shadow-hover);
30
+ box-shadow: 6px 6px 0px 0px var(--border-strong);
31
31
  }
32
32
  .trigger:focus, .trigger:focus-visible, .trigger[aria-expanded=true] {
33
33
  outline: none;
@@ -15,7 +15,7 @@
15
15
  }
16
16
  .container:hover {
17
17
  transform: translate(-2px, -2px);
18
- box-shadow: var(--shadow-hover);
18
+ box-shadow: 6px 6px 0px 0px var(--border-strong);
19
19
  }
20
20
  .container[data-state=open] {
21
21
  transform: translate(-2px, -2px);
@@ -183,7 +183,7 @@ export const baseVariables = {
183
183
  "--border-width": "2px",
184
184
  "--radius": "4px",
185
185
  "--shadow-hard": "4px 4px 0px 0px var(--border-strong)",
186
- "--shadow-hover": "8px 8px 0px 0px var(--border-strong)",
186
+ "--shadow-hover": "6px 6px 0px 0px var(--border-strong)",
187
187
  // Typography Standards (Global)
188
188
  "--font-heading": "var(--font-montserrat)",
189
189
  "--heading-transform": "uppercase",