@ceebee/ui 1.5.2 → 1.5.3
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/dist/styles.css +16 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2132,3 +2132,19 @@ html, body { background: var(--cb-bg); color: var(--cb-fg); }
|
|
|
2132
2132
|
background: var(--cb-surface);
|
|
2133
2133
|
color: var(--cb-fg);
|
|
2134
2134
|
}
|
|
2135
|
+
|
|
2136
|
+
/* theme/ant-runtime.css */
|
|
2137
|
+
/* Vendored runtime geometry that Ant does not expose through component tokens.
|
|
2138
|
+
|
|
2139
|
+
Ant derives Tag height from line height and content. A bare label, a label
|
|
2140
|
+
with a third-party SVG, and a CheckableTag therefore land on three different
|
|
2141
|
+
physical heights even though they share one semantic component. Ant exposes
|
|
2142
|
+
its colours but no height component token, so the additive floor lives at
|
|
2143
|
+
the Skin bridge. The zero-specificity selector lets an upstream min-height
|
|
2144
|
+
take ownership if one is added later. */
|
|
2145
|
+
:where(.ant-tag) {
|
|
2146
|
+
box-sizing: border-box;
|
|
2147
|
+
min-height: calc(var(--cb-control-height-sm) - var(--cb-space-1));
|
|
2148
|
+
align-content: center;
|
|
2149
|
+
vertical-align: middle;
|
|
2150
|
+
}
|