@uxf/ui 11.21.3 → 11.21.4
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/css/radio-group.css +21 -9
- package/package.json +1 -1
package/css/radio-group.css
CHANGED
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
&__option-wrapper {
|
|
12
|
-
|
|
12
|
+
display: flex;
|
|
13
|
+
justify-content: space-between;
|
|
13
14
|
|
|
14
15
|
&.is-selected {
|
|
15
16
|
.uxf-radio-group__option-label {
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
&__label {
|
|
34
|
-
|
|
35
|
+
margin-bottom: theme("spacing.2");
|
|
35
36
|
}
|
|
36
37
|
}
|
|
37
38
|
|
|
@@ -57,7 +58,7 @@
|
|
|
57
58
|
}
|
|
58
59
|
|
|
59
60
|
.uxf-radio-group__option-label {
|
|
60
|
-
|
|
61
|
+
padding-right: theme("spacing.4");
|
|
61
62
|
}
|
|
62
63
|
}
|
|
63
64
|
|
|
@@ -71,7 +72,9 @@
|
|
|
71
72
|
}
|
|
72
73
|
|
|
73
74
|
.uxf-radio-group__options-wrapper {
|
|
74
|
-
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-wrap: wrap;
|
|
77
|
+
gap: theme("spacing.2");
|
|
75
78
|
}
|
|
76
79
|
|
|
77
80
|
.uxf-radio-group__option-wrapper {
|
|
@@ -92,7 +95,9 @@
|
|
|
92
95
|
}
|
|
93
96
|
|
|
94
97
|
.uxf-radio-group__option-label {
|
|
95
|
-
@apply
|
|
98
|
+
@apply text-sm;
|
|
99
|
+
|
|
100
|
+
padding-top: theme("spacing.4");
|
|
96
101
|
}
|
|
97
102
|
}
|
|
98
103
|
|
|
@@ -107,22 +112,29 @@
|
|
|
107
112
|
}
|
|
108
113
|
|
|
109
114
|
.uxf-radio-group__option-wrapper {
|
|
110
|
-
@apply flex-row-reverse
|
|
115
|
+
@apply flex-row-reverse;
|
|
116
|
+
|
|
117
|
+
align-items: center;
|
|
111
118
|
}
|
|
112
119
|
|
|
113
120
|
.uxf-radio-group__option-label {
|
|
114
|
-
|
|
121
|
+
padding-left: theme("spacing.2");
|
|
115
122
|
}
|
|
116
123
|
}
|
|
117
124
|
|
|
118
125
|
.uxf-radio-group--column {
|
|
119
126
|
.uxf-radio-group__options-wrapper {
|
|
120
|
-
|
|
127
|
+
align-items: start;
|
|
128
|
+
display: flex;
|
|
129
|
+
flex-direction: column;
|
|
130
|
+
gap: theme("spacing.2");
|
|
121
131
|
}
|
|
122
132
|
}
|
|
123
133
|
|
|
124
134
|
.uxf-radio-group--row {
|
|
125
135
|
.uxf-radio-group__options-wrapper {
|
|
126
|
-
|
|
136
|
+
align-items: center;
|
|
137
|
+
display: flex;
|
|
138
|
+
gap: theme("spacing.10");
|
|
127
139
|
}
|
|
128
140
|
}
|