@basis-ng/styles 0.0.1-alpha.172 → 0.0.1-alpha.173
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 +1 -1
- package/src/components/tabs.css +6 -6
package/package.json
CHANGED
package/src/components/tabs.css
CHANGED
|
@@ -16,20 +16,20 @@ b-tabs {
|
|
|
16
16
|
|
|
17
17
|
/* Selected state */
|
|
18
18
|
&[aria-selected='true'] {
|
|
19
|
-
@apply bg-
|
|
20
|
-
@apply dark:bg-
|
|
19
|
+
@apply bg-primary text-primary-foreground;
|
|
20
|
+
@apply dark:bg-primary-dark dark:text-primary-foreground-dark;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
/* Hover state (not selected) */
|
|
24
24
|
&:hover:not([aria-selected='true']) {
|
|
25
|
-
@apply bg-
|
|
26
|
-
@apply dark:bg-
|
|
25
|
+
@apply bg-primary/10;
|
|
26
|
+
@apply dark:bg-primary-dark/20;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
/* Focus state */
|
|
30
30
|
&:focus-visible {
|
|
31
|
-
@apply outline-2 outline-offset-2 outline-
|
|
32
|
-
@apply dark:outline-
|
|
31
|
+
@apply outline-2 outline-offset-2 outline-primary;
|
|
32
|
+
@apply dark:outline-primary-dark;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
/* Disabled state */
|