@basis-ng/styles 0.0.1-alpha.193 → 0.0.1-alpha.194

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": "@basis-ng/styles",
3
- "version": "0.0.1-alpha.193",
3
+ "version": "0.0.1-alpha.194",
4
4
  "description": "CSS foundation for @basis-ng/primitives components",
5
5
  "main": "src/index.css",
6
6
  "exports": {
@@ -6,7 +6,7 @@ b-tabs {
6
6
  @apply gap-1.5;
7
7
 
8
8
  /* Individual tab styling */
9
- b-tab {
9
+ [b-tab] {
10
10
  /* Base Tab Settings */
11
11
  @apply flex items-center justify-center gap-2 cursor-pointer select-none outline-none font-medium border transition-colors duration-200 ease-out;
12
12
 
@@ -44,40 +44,40 @@ b-tabs {
44
44
  /* Size variants */
45
45
  &.b-size-sm {
46
46
  @apply gap-1;
47
- b-tab {
47
+ [b-tab] {
48
48
  @apply px-2.5 py-0.5 text-xs h-7 gap-1.5 rounded-size-sm;
49
49
  }
50
50
  }
51
51
 
52
52
  &.b-size-md {
53
53
  @apply gap-1.5;
54
- b-tab {
54
+ [b-tab] {
55
55
  @apply px-3.5 py-1 text-[14px] h-8 gap-2 rounded-size-sm;
56
56
  }
57
57
  }
58
58
 
59
59
  &.b-size-lg {
60
60
  @apply gap-2;
61
- b-tab {
61
+ [b-tab] {
62
62
  @apply px-4 py-1.5 text-[15px] h-10 gap-2.5 rounded-size-md;
63
63
  }
64
64
  }
65
65
 
66
66
  /* Rounded full variant */
67
67
  &.b-rounded-full {
68
- b-tab {
68
+ [b-tab] {
69
69
  @apply rounded-full;
70
70
  }
71
71
 
72
- &.b-size-sm b-tab {
72
+ &.b-size-sm [b-tab] {
73
73
  @apply px-3.5;
74
74
  }
75
75
 
76
- &.b-size-md b-tab {
76
+ &.b-size-md [b-tab] {
77
77
  @apply px-4;
78
78
  }
79
79
 
80
- &.b-size-lg b-tab {
80
+ &.b-size-lg [b-tab] {
81
81
  @apply px-6;
82
82
  }
83
83
  }