@interopio/groups-ui-react 2.0.5 → 2.1.0
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/groups.css +3 -2
- package/dist/styles/vars.css +3 -2
- package/package.json +1 -1
package/dist/styles/groups.css
CHANGED
|
@@ -319,6 +319,7 @@ input {
|
|
|
319
319
|
|
|
320
320
|
.t42-frame-channel-selector {
|
|
321
321
|
align-self: center;
|
|
322
|
+
border-radius: var(--t42-frame-channel-selector-border-radius);
|
|
322
323
|
width: var(--t42-frame-channel-selector-size);
|
|
323
324
|
height: var(--t42-frame-channel-selector-size);
|
|
324
325
|
margin: var(--t42-frame-channel-selector-margin);
|
|
@@ -326,8 +327,8 @@ input {
|
|
|
326
327
|
}
|
|
327
328
|
|
|
328
329
|
.t42-frame-channel-selector-content {
|
|
329
|
-
width: var(--t42-
|
|
330
|
-
height: var(--t42-
|
|
330
|
+
width: var(--t42-frame-channel-selector-size);
|
|
331
|
+
height: var(--t42-frame-channel-selector-size);
|
|
331
332
|
}
|
|
332
333
|
|
|
333
334
|
.t42-frame-channel-selector-content .t42-standard-button-image {
|
package/dist/styles/vars.css
CHANGED
|
@@ -24,8 +24,9 @@
|
|
|
24
24
|
--t42-frame-border-color: hsl(var(--io-border-secondary));
|
|
25
25
|
--t42-focused-frame-border-color: hsl(var(--io-border-primary));
|
|
26
26
|
|
|
27
|
-
--t42-frame-channel-selector-
|
|
28
|
-
--t42-frame-channel-selector-
|
|
27
|
+
--t42-frame-channel-selector-border-radius: var(--spacing-4);
|
|
28
|
+
--t42-frame-channel-selector-size: 16px;
|
|
29
|
+
--t42-frame-channel-selector-margin: 0 0 0 4px;
|
|
29
30
|
--t42-frame-caption-height: 30px;
|
|
30
31
|
--t42-frame-caption-separator-size: 0;
|
|
31
32
|
--t42-frame-caption-background: Hsl(var(--io-bg-01));
|