ros.grant.common 2.0.1119 → 2.0.1120
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/Shared/Styles/Base/Fonts.less +18 -18
- package/package.json +1 -1
|
@@ -1305,72 +1305,72 @@
|
|
|
1305
1305
|
/** Inter BEGIN**/
|
|
1306
1306
|
@font-face {
|
|
1307
1307
|
font-family: 'Inter';
|
|
1308
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1309
|
-
font-weight:
|
|
1308
|
+
src: url('@{commonFontsRoot}/Inter-Thin.ttf') format('truetype');
|
|
1309
|
+
font-weight: 100;
|
|
1310
1310
|
font-style: normal;
|
|
1311
1311
|
font-display: swap;
|
|
1312
1312
|
}
|
|
1313
1313
|
|
|
1314
1314
|
@font-face {
|
|
1315
1315
|
font-family: 'Inter';
|
|
1316
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1317
|
-
font-weight:
|
|
1316
|
+
src: url('@{commonFontsRoot}/Inter-ExtraLight.ttf') format('truetype');
|
|
1317
|
+
font-weight: 200;
|
|
1318
1318
|
font-style: normal;
|
|
1319
1319
|
font-display: swap;
|
|
1320
1320
|
}
|
|
1321
1321
|
|
|
1322
1322
|
@font-face {
|
|
1323
1323
|
font-family: 'Inter';
|
|
1324
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1325
|
-
font-weight:
|
|
1324
|
+
src: url('@{commonFontsRoot}/Inter-Light.ttf') format('truetype');
|
|
1325
|
+
font-weight: 300;
|
|
1326
1326
|
font-style: normal;
|
|
1327
1327
|
font-display: swap;
|
|
1328
1328
|
}
|
|
1329
1329
|
|
|
1330
1330
|
@font-face {
|
|
1331
1331
|
font-family: 'Inter';
|
|
1332
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1333
|
-
font-weight:
|
|
1332
|
+
src: url('@{commonFontsRoot}/Inter-Regular.ttf') format('truetype');
|
|
1333
|
+
font-weight: 400;
|
|
1334
1334
|
font-style: normal;
|
|
1335
1335
|
font-display: swap;
|
|
1336
1336
|
}
|
|
1337
1337
|
|
|
1338
1338
|
@font-face {
|
|
1339
1339
|
font-family: 'Inter';
|
|
1340
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1341
|
-
font-weight:
|
|
1340
|
+
src: url('@{commonFontsRoot}/Inter-Medium.ttf') format('truetype');
|
|
1341
|
+
font-weight: 500;
|
|
1342
1342
|
font-style: normal;
|
|
1343
1343
|
font-display: swap;
|
|
1344
1344
|
}
|
|
1345
1345
|
|
|
1346
1346
|
@font-face {
|
|
1347
1347
|
font-family: 'Inter';
|
|
1348
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1349
|
-
font-weight:
|
|
1348
|
+
src: url('@{commonFontsRoot}/Inter-SemiBold.ttf') format('truetype');
|
|
1349
|
+
font-weight: 600;
|
|
1350
1350
|
font-style: normal;
|
|
1351
1351
|
font-display: swap;
|
|
1352
1352
|
}
|
|
1353
1353
|
|
|
1354
1354
|
@font-face {
|
|
1355
1355
|
font-family: 'Inter';
|
|
1356
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1357
|
-
font-weight:
|
|
1356
|
+
src: url('@{commonFontsRoot}/Inter-Bold.ttf') format('truetype');
|
|
1357
|
+
font-weight: 700;
|
|
1358
1358
|
font-style: normal;
|
|
1359
1359
|
font-display: swap;
|
|
1360
1360
|
}
|
|
1361
1361
|
|
|
1362
1362
|
@font-face {
|
|
1363
1363
|
font-family: 'Inter';
|
|
1364
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1365
|
-
font-weight:
|
|
1364
|
+
src: url('@{commonFontsRoot}/Inter-ExtraBold.ttf') format('truetype');
|
|
1365
|
+
font-weight: 800;
|
|
1366
1366
|
font-style: normal;
|
|
1367
1367
|
font-display: swap;
|
|
1368
1368
|
}
|
|
1369
1369
|
|
|
1370
1370
|
@font-face {
|
|
1371
1371
|
font-family: 'Inter';
|
|
1372
|
-
src: url('@{commonFontsRoot}/Inter-
|
|
1373
|
-
font-weight:
|
|
1372
|
+
src: url('@{commonFontsRoot}/Inter-Black.ttf') format('truetype');
|
|
1373
|
+
font-weight: 900;
|
|
1374
1374
|
font-style: normal;
|
|
1375
1375
|
font-display: swap;
|
|
1376
1376
|
}
|
package/package.json
CHANGED