@basis-ng/styles 0.0.1-alpha.164 → 0.0.1-alpha.165
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
package/src/components/menu.css
CHANGED
|
@@ -23,7 +23,7 @@ b-menu {
|
|
|
23
23
|
|
|
24
24
|
&.b-squared {
|
|
25
25
|
aspect-ratio: 1 / 1;
|
|
26
|
-
@apply w-10 min-w-10 h-10 min-h-10
|
|
26
|
+
@apply w-10 min-w-10 h-10 min-h-10 p-0! flex items-center justify-center text-center;
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
@@ -49,7 +49,7 @@ b-menu {
|
|
|
49
49
|
|
|
50
50
|
&.b-squared {
|
|
51
51
|
aspect-ratio: 1 / 1;
|
|
52
|
-
@apply w-8 min-w-8 h-8 min-h-8
|
|
52
|
+
@apply w-8 min-w-8 h-8 min-h-8 p-0! flex items-center justify-center text-center;
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -76,7 +76,7 @@ b-menu {
|
|
|
76
76
|
|
|
77
77
|
&.b-squared {
|
|
78
78
|
aspect-ratio: 1 / 1;
|
|
79
|
-
@apply w-10 min-w-10 h-10 min-h-10
|
|
79
|
+
@apply w-10 min-w-10 h-10 min-h-10 p-0! flex items-center justify-center text-center;
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
}
|
|
@@ -103,7 +103,7 @@ b-menu {
|
|
|
103
103
|
|
|
104
104
|
&.b-squared {
|
|
105
105
|
aspect-ratio: 1 / 1;
|
|
106
|
-
@apply w-12 min-w-12 h-12 min-h-12
|
|
106
|
+
@apply w-12 min-w-12 h-12 min-h-12 p-0! flex items-center justify-center text-center;
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
}
|
|
@@ -142,12 +142,12 @@ b-menu {
|
|
|
142
142
|
@apply flex flex-col;
|
|
143
143
|
|
|
144
144
|
&:not(:first-child) {
|
|
145
|
-
@apply border-t
|
|
145
|
+
@apply border-t border-secondary;
|
|
146
146
|
@apply dark:border-secondary-dark;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
&:not(:last-child) {
|
|
150
|
-
@apply border-b
|
|
150
|
+
@apply border-b border-secondary;
|
|
151
151
|
@apply dark:border-secondary-dark;
|
|
152
152
|
}
|
|
153
153
|
}
|
|
@@ -27,11 +27,11 @@ li[b-option] {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.b-size-sm li[b-option] {
|
|
30
|
-
@apply px-2 py-0 text-xs h-6 rounded-size-xs gap-1;
|
|
30
|
+
@apply px-2 py-0 text-xs min-h-6 rounded-size-xs gap-1;
|
|
31
31
|
}
|
|
32
32
|
.b-size-md li[b-option] {
|
|
33
|
-
@apply px-3 py-0 text-sm h-8 rounded-size-sm gap-1.5;
|
|
33
|
+
@apply px-3 py-0 text-sm min-h-8 rounded-size-sm gap-1.5;
|
|
34
34
|
}
|
|
35
35
|
.b-size-lg li[b-option] {
|
|
36
|
-
@apply px-4 py-0 text-base h-10 rounded-size-md gap-2;
|
|
36
|
+
@apply px-4 py-0 text-base min-h-10 rounded-size-md gap-2;
|
|
37
37
|
}
|