@mond-design-system/react 6.0.0 → 6.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/index.css CHANGED
@@ -1350,6 +1350,12 @@ button.mds-Link__link {
1350
1350
  gap: var(--mds-gap-tight);
1351
1351
  cursor: pointer;
1352
1352
  }
1353
+ .mds-Radio__size-sm {
1354
+ --mds-check-size: var(--mds-check-size-sm);
1355
+ }
1356
+ .mds-Radio__size-lg {
1357
+ --mds-check-size: var(--mds-check-size-lg);
1358
+ }
1353
1359
  .mds-Radio__root:has(.mds-Radio__dot:disabled) {
1354
1360
  cursor: not-allowed;
1355
1361
  }
@@ -1359,6 +1365,7 @@ button.mds-Link__link {
1359
1365
  margin: 0;
1360
1366
  width: var(--mds-check-size);
1361
1367
  height: var(--mds-check-size);
1368
+ font-size: var(--mds-check-size);
1362
1369
  border: var(--mds-border-width) solid var(--mds-control-border);
1363
1370
  border-radius: var(--mds-radius-pill);
1364
1371
  background: var(--mds-surface-card);
@@ -1373,8 +1380,8 @@ button.mds-Link__link {
1373
1380
  }
1374
1381
  .mds-Radio__dot:checked::after {
1375
1382
  content: "";
1376
- width: 50%;
1377
- height: 50%;
1383
+ width: 0.5em;
1384
+ height: 0.5em;
1378
1385
  border-radius: var(--mds-radius-pill);
1379
1386
  background: var(--mds-action-bg);
1380
1387
  }