mrxy-yk 1.0.19 → 1.0.20
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/tools/index.css +88 -0
- package/package.json +1 -1
- package/web-types.json +1 -1
|
@@ -1278,6 +1278,86 @@
|
|
|
1278
1278
|
padding-left: 48px !important;
|
|
1279
1279
|
}
|
|
1280
1280
|
|
|
1281
|
+
.m-50 {
|
|
1282
|
+
margin: 50px !important;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
.p-50 {
|
|
1286
|
+
padding: 50px !important;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
.mt-50, .my-50 {
|
|
1290
|
+
margin-top: 50px !important;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
.pt-50, .py-50 {
|
|
1294
|
+
padding-top: 50px !important;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.mr-50, .mx-50 {
|
|
1298
|
+
margin-right: 50px !important;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.pr-50, .px-50 {
|
|
1302
|
+
padding-right: 50px !important;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.mb-50, .my-50 {
|
|
1306
|
+
margin-bottom: 50px !important;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.pb-50, .py-50 {
|
|
1310
|
+
padding-bottom: 50px !important;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.ml-50, .mx-50 {
|
|
1314
|
+
margin-left: 50px !important;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.pl-50, .px-50 {
|
|
1318
|
+
padding-left: 50px !important;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.m-52 {
|
|
1322
|
+
margin: 52px !important;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.p-52 {
|
|
1326
|
+
padding: 52px !important;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.mt-52, .my-52 {
|
|
1330
|
+
margin-top: 52px !important;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.pt-52, .py-52 {
|
|
1334
|
+
padding-top: 52px !important;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.mr-52, .mx-52 {
|
|
1338
|
+
margin-right: 52px !important;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.pr-52, .px-52 {
|
|
1342
|
+
padding-right: 52px !important;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.mb-52, .my-52 {
|
|
1346
|
+
margin-bottom: 52px !important;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.pb-52, .py-52 {
|
|
1350
|
+
padding-bottom: 52px !important;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.ml-52, .mx-52 {
|
|
1354
|
+
margin-left: 52px !important;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.pl-52, .px-52 {
|
|
1358
|
+
padding-left: 52px !important;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1281
1361
|
.m-auto {
|
|
1282
1362
|
margin: auto !important;
|
|
1283
1363
|
}
|
|
@@ -2176,6 +2256,14 @@
|
|
|
2176
2256
|
-webkit-box-orient: vertical;
|
|
2177
2257
|
}
|
|
2178
2258
|
|
|
2259
|
+
.border-radius-full {
|
|
2260
|
+
border-radius: 50%;
|
|
2261
|
+
}
|
|
2262
|
+
|
|
2263
|
+
.aspect-ratio-1 {
|
|
2264
|
+
aspect-ratio: 1/1;
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2179
2267
|
.text-gradient {
|
|
2180
2268
|
background-clip: text;
|
|
2181
2269
|
-webkit-background-clip: text;
|
package/package.json
CHANGED