@basis-ng/styles 0.0.1-alpha.138 → 0.0.1-alpha.139
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
b-tabs {
|
|
2
2
|
@apply flex items-center;
|
|
3
|
-
@apply bg-
|
|
4
|
-
@apply dark:bg-
|
|
3
|
+
@apply bg-primary/5 text-secondary-foreground;
|
|
4
|
+
@apply dark:bg-primary-dark/5 dark:text-secondary-foreground-dark;
|
|
5
5
|
|
|
6
6
|
/* Base md by default */
|
|
7
7
|
@apply px-1 py-0 text-sm h-8 rounded-size-md gap-1.5;
|
|
@@ -11,13 +11,13 @@ b-tabs {
|
|
|
11
11
|
@apply px-2 py-0 text-xs h-6 rounded-size-sm gap-1;
|
|
12
12
|
|
|
13
13
|
&[aria-selected='true'] {
|
|
14
|
-
@apply bg-primary-
|
|
15
|
-
@apply dark:bg-primary-
|
|
14
|
+
@apply bg-primary/5 text-primary inset-ring-1 inset-ring-primary/20;
|
|
15
|
+
@apply dark:bg-primary-dark/5 dark:text-primary-dark dark:inset-ring-primary-dark/30;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
&:hover:not(.cdk-option-active) {
|
|
19
|
-
@apply bg-primary
|
|
20
|
-
@apply dark:bg-primary-
|
|
19
|
+
@apply bg-primary/5 hover:cursor-pointer;
|
|
20
|
+
@apply dark:bg-primary-dark/5;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|