@vsn-ux/gaia-styles 0.1.5 → 0.1.6

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.
@@ -724,6 +724,10 @@
724
724
  border-top-left-radius: var(--ga-radius);
725
725
  border-top-right-radius: var(--ga-radius);
726
726
  }
727
+ &:last-child {
728
+ border-bottom-right-radius: var(--ga-radius);
729
+ border-bottom-left-radius: var(--ga-radius);
730
+ }
727
731
  &:hover {
728
732
  background-color: var(--ga-color-surface-action-hover-2);
729
733
  color: var(--ga-color-text-action-hover);
@@ -724,6 +724,10 @@
724
724
  border-top-left-radius: var(--ga-radius);
725
725
  border-top-right-radius: var(--ga-radius);
726
726
  }
727
+ &:last-child {
728
+ border-bottom-right-radius: var(--ga-radius);
729
+ border-bottom-left-radius: var(--ga-radius);
730
+ }
727
731
  &:hover {
728
732
  background-color: var(--ga-color-surface-action-hover-2);
729
733
  color: var(--ga-color-text-action-hover);
package/dist/all.css CHANGED
@@ -865,6 +865,10 @@
865
865
  border-top-left-radius: var(--ga-radius);
866
866
  border-top-right-radius: var(--ga-radius);
867
867
  }
868
+ &:last-child {
869
+ border-bottom-right-radius: var(--ga-radius);
870
+ border-bottom-left-radius: var(--ga-radius);
871
+ }
868
872
  &:hover {
869
873
  background-color: var(--ga-color-surface-action-hover-2);
870
874
  color: var(--ga-color-text-action-hover);
@@ -31,6 +31,10 @@
31
31
  border-top-left-radius: var(--ga-radius);
32
32
  border-top-right-radius: var(--ga-radius);
33
33
  }
34
+ &:last-child {
35
+ border-bottom-right-radius: var(--ga-radius);
36
+ border-bottom-left-radius: var(--ga-radius);
37
+ }
34
38
  &:hover {
35
39
  background-color: var(--ga-color-surface-action-hover-2);
36
40
  color: var(--ga-color-text-action-hover);
@@ -465,6 +465,10 @@
465
465
  border-top-left-radius: var(--ga-radius);
466
466
  border-top-right-radius: var(--ga-radius);
467
467
  }
468
+ &:last-child {
469
+ border-bottom-right-radius: var(--ga-radius);
470
+ border-bottom-left-radius: var(--ga-radius);
471
+ }
468
472
  &:hover {
469
473
  background-color: var(--ga-color-surface-action-hover-2);
470
474
  color: var(--ga-color-text-action-hover);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsn-ux/gaia-styles",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "storybook dev -p 6006",
@@ -8,6 +8,10 @@
8
8
  @apply rounded-t;
9
9
  }
10
10
 
11
+ &:last-child {
12
+ @apply rounded-b;
13
+ }
14
+
11
15
  &:hover {
12
16
  @apply bg-(--ga-color-surface-action-hover-2) text-(--ga-color-text-action-hover);
13
17
  }