@iit/precision-ui 0.5.3 → 0.5.5

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.css CHANGED
@@ -538,9 +538,6 @@ body{
538
538
  .col-span-2{
539
539
  grid-column: span 2 / span 2;
540
540
  }
541
- .col-span-3{
542
- grid-column: span 3 / span 3;
543
- }
544
541
  .col-span-7{
545
542
  grid-column: span 7 / span 7;
546
543
  }
@@ -817,15 +814,9 @@ body{
817
814
  -moz-user-select: none;
818
815
  user-select: none;
819
816
  }
820
- .auto-rows-\[222px\]{
821
- grid-auto-rows: 222px;
822
- }
823
817
  .grid-cols-1{
824
818
  grid-template-columns: repeat(1, minmax(0, 1fr));
825
819
  }
826
- .grid-cols-2{
827
- grid-template-columns: repeat(2, minmax(0, 1fr));
828
- }
829
820
  .flex-col{
830
821
  flex-direction: column;
831
822
  }
@@ -970,6 +961,9 @@ body{
970
961
  .border-l{
971
962
  border-left-width: 1px;
972
963
  }
964
+ .border-l-0{
965
+ border-left-width: 0px;
966
+ }
973
967
  .border-r-0{
974
968
  border-right-width: 0px;
975
969
  }
@@ -1123,9 +1117,6 @@ body{
1123
1117
  .p-0{
1124
1118
  padding: 0px;
1125
1119
  }
1126
- .p-10{
1127
- padding: 2.5rem;
1128
- }
1129
1120
  .p-4{
1130
1121
  padding: 1rem;
1131
1122
  }
@@ -1185,6 +1176,10 @@ body{
1185
1176
  padding-top: 1rem;
1186
1177
  padding-bottom: 1rem;
1187
1178
  }
1179
+ .py-6{
1180
+ padding-top: 1.5rem;
1181
+ padding-bottom: 1.5rem;
1182
+ }
1188
1183
  .py-\[11px\]{
1189
1184
  padding-top: 11px;
1190
1185
  padding-bottom: 11px;
@@ -1204,30 +1199,18 @@ body{
1204
1199
  .pb-0{
1205
1200
  padding-bottom: 0px;
1206
1201
  }
1207
- .pb-10{
1208
- padding-bottom: 2.5rem;
1209
- }
1210
- .pb-32{
1211
- padding-bottom: 8rem;
1202
+ .pb-12{
1203
+ padding-bottom: 3rem;
1212
1204
  }
1213
1205
  .pb-4{
1214
1206
  padding-bottom: 1rem;
1215
1207
  }
1216
- .pb-6{
1217
- padding-bottom: 1.5rem;
1218
- }
1219
- .pb-\[116px\]{
1220
- padding-bottom: 116px;
1221
- }
1222
1208
  .pb-\[11px\]{
1223
1209
  padding-bottom: 11px;
1224
1210
  }
1225
1211
  .pb-\[4px\]{
1226
1212
  padding-bottom: 4px;
1227
1213
  }
1228
- .pb-\[76px\]{
1229
- padding-bottom: 76px;
1230
- }
1231
1214
  .pl-10{
1232
1215
  padding-left: 2.5rem;
1233
1216
  }
@@ -1255,8 +1238,8 @@ body{
1255
1238
  .pt-0{
1256
1239
  padding-top: 0px;
1257
1240
  }
1258
- .pt-32{
1259
- padding-top: 8rem;
1241
+ .pt-10{
1242
+ padding-top: 2.5rem;
1260
1243
  }
1261
1244
  .pt-4{
1262
1245
  padding-top: 1rem;
@@ -1811,8 +1794,14 @@ body {
1811
1794
  background: hsla(var(--precision-ui-tw-whitish));
1812
1795
  }
1813
1796
  .horizontal-white-divider-on-center {
1797
+ display: none;
1814
1798
  position: relative;
1815
1799
  }
1800
+ @media screen and (min-width: 768px) {
1801
+ .horizontal-white-divider-on-center {
1802
+ display: block;
1803
+ }
1804
+ }
1816
1805
  .horizontal-white-divider-on-center::before {
1817
1806
  content: "";
1818
1807
  position: absolute;
@@ -2340,12 +2329,18 @@ html {
2340
2329
  .sm\:mt-6{
2341
2330
  margin-top: 1.5rem;
2342
2331
  }
2332
+ .sm\:block{
2333
+ display: block;
2334
+ }
2343
2335
  .sm\:min-h-\[264px\]{
2344
2336
  min-height: 264px;
2345
2337
  }
2346
2338
  .sm\:max-w-xs{
2347
2339
  max-width: 20rem;
2348
2340
  }
2341
+ .sm\:auto-rows-\[222px\]{
2342
+ grid-auto-rows: 222px;
2343
+ }
2349
2344
  .sm\:grid-cols-2{
2350
2345
  grid-template-columns: repeat(2, minmax(0, 1fr));
2351
2346
  }
@@ -2369,6 +2364,31 @@ html {
2369
2364
  .sm\:rounded-lg{
2370
2365
  border-radius: var(--precision-ui-tw-radius);
2371
2366
  }
2367
+ .sm\:p-10{
2368
+ padding: 2.5rem;
2369
+ }
2370
+ .sm\:py-0{
2371
+ padding-top: 0px;
2372
+ padding-bottom: 0px;
2373
+ }
2374
+ .sm\:pb-10{
2375
+ padding-bottom: 2.5rem;
2376
+ }
2377
+ .sm\:pb-32{
2378
+ padding-bottom: 8rem;
2379
+ }
2380
+ .sm\:pb-6{
2381
+ padding-bottom: 1.5rem;
2382
+ }
2383
+ .sm\:pb-\[116px\]{
2384
+ padding-bottom: 116px;
2385
+ }
2386
+ .sm\:pb-\[76px\]{
2387
+ padding-bottom: 76px;
2388
+ }
2389
+ .sm\:pt-32{
2390
+ padding-top: 8rem;
2391
+ }
2372
2392
  .sm\:text-left{
2373
2393
  text-align: left;
2374
2394
  }
@@ -2382,6 +2402,9 @@ html {
2382
2402
  }
2383
2403
  }
2384
2404
  @media (min-width: 990px){
2405
+ .lg\:block{
2406
+ display: block;
2407
+ }
2385
2408
  .lg\:max-w-sm{
2386
2409
  max-width: 24rem;
2387
2410
  }
@@ -2400,12 +2423,12 @@ html {
2400
2423
  .lg\:grid-cols-3{
2401
2424
  grid-template-columns: repeat(3, minmax(0, 1fr));
2402
2425
  }
2403
- .lg\:grid-cols-4{
2404
- grid-template-columns: repeat(4, minmax(0, 1fr));
2405
- }
2406
2426
  .lg\:grid-cols-6{
2407
2427
  grid-template-columns: repeat(6, minmax(0, 1fr));
2408
2428
  }
2429
+ .lg\:border-l-\[1px\]{
2430
+ border-left-width: 1px;
2431
+ }
2409
2432
  .lg\:pr-8{
2410
2433
  padding-right: 2rem;
2411
2434
  }
@@ -2423,6 +2446,9 @@ html {
2423
2446
  .xl\:max-w-md{
2424
2447
  max-width: 28rem;
2425
2448
  }
2449
+ .xl\:grid-cols-4{
2450
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2451
+ }
2426
2452
  .xl\:pr-28{
2427
2453
  padding-right: 7rem;
2428
2454
  }
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "type": "git",
14
14
  "url": "git+https://github.com/wowxoxo/precision-ui.git"
15
15
  },
16
- "version": "0.5.3",
16
+ "version": "0.5.5",
17
17
  "type": "module",
18
18
  "module": "./dist/index.es.js",
19
19
  "types": "./dist/index.d.ts",