@npm_leadtech/legal-lib-components 5.42.11 → 5.42.12
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/css/styles.css
CHANGED
|
@@ -1889,7 +1889,7 @@ h2.react-datepicker__current-month {
|
|
|
1889
1889
|
}
|
|
1890
1890
|
.e-radio.box .e-radio__inner {
|
|
1891
1891
|
display: flex;
|
|
1892
|
-
flex-
|
|
1892
|
+
flex-wrap: wrap;
|
|
1893
1893
|
gap: 0.5rem;
|
|
1894
1894
|
}
|
|
1895
1895
|
.e-radio.box .e-radio__inner .radio-item-container {
|
|
@@ -1916,6 +1916,11 @@ h2.react-datepicker__current-month {
|
|
|
1916
1916
|
.e-radio.box .e-radio__inner .radio-item-container:hover .e-radio-label {
|
|
1917
1917
|
background: var(--neutral-neutral-5, #f3f7fa);
|
|
1918
1918
|
}
|
|
1919
|
+
@media (min-width: 575px) {
|
|
1920
|
+
.e-radio.box .e-radio__inner .radio-item-container {
|
|
1921
|
+
width: 49%;
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1919
1924
|
.e-radio.default .e-radio__inner .radio-item-container .e-radio-label,
|
|
1920
1925
|
.e-radio.box .e-radio__inner .radio-item-container .e-radio-label {
|
|
1921
1926
|
align-items: center;
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
@mixin boxStyles {
|
|
195
195
|
.e-radio__inner {
|
|
196
196
|
display: flex;
|
|
197
|
-
flex-
|
|
197
|
+
flex-wrap: wrap;
|
|
198
198
|
gap: 0.5rem;
|
|
199
199
|
.radio-item-container {
|
|
200
200
|
width: 100%;
|
|
@@ -228,6 +228,12 @@
|
|
|
228
228
|
}
|
|
229
229
|
}
|
|
230
230
|
}
|
|
231
|
+
|
|
232
|
+
@include portrait-tablets {
|
|
233
|
+
.radio-item-container {
|
|
234
|
+
width: 49%;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
231
237
|
}
|
|
232
238
|
}
|
|
233
239
|
|