daisyui 1.16.6 → 1.17.1
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/CHANGELOG.md +27 -0
- package/README.md +1 -1
- package/dist/full.css +377 -60
- package/dist/styled.css +43 -62
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +2 -11
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/dist/utilities-styled.js +1 -1
- package/dist/utilities-unstyled.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.17.1](https://github.com/saadeghi/daisyui/compare/v1.16.6...v1.17.1) (2021-12-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **components:** steps-horizontal ([5577140](https://github.com/saadeghi/daisyui/commit/5577140e3e8fccd8ada90d27f57c8f9bb5bb6a44))
|
|
11
|
+
* responsive `steps` ([7ba7d65](https://github.com/saadeghi/daisyui/commit/7ba7d6534b6a2abc6b6077faba4c2a5431307b42))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* [#341](https://github.com/saadeghi/daisyui/issues/341) ([118ff41](https://github.com/saadeghi/daisyui/commit/118ff417df6d9a1c0170db651067bd524ecb93aa))
|
|
17
|
+
* [#344](https://github.com/saadeghi/daisyui/issues/344) (typography plugin v0.5 compatibility) ([0969505](https://github.com/saadeghi/daisyui/commit/09695059b2ce1c960fb1dc24080bca41576e938e))
|
|
18
|
+
|
|
19
|
+
## [1.17.0](https://github.com/saadeghi/daisyui/compare/v1.16.6...v1.17.0) (2021-12-21)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **components:** steps-horizontal ([5577140](https://github.com/saadeghi/daisyui/commit/5577140e3e8fccd8ada90d27f57c8f9bb5bb6a44))
|
|
25
|
+
* responsive `steps` ([7ba7d65](https://github.com/saadeghi/daisyui/commit/7ba7d6534b6a2abc6b6077faba4c2a5431307b42))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* [#344](https://github.com/saadeghi/daisyui/issues/344) (typography plugin v0.5 compatibility) ([0969505](https://github.com/saadeghi/daisyui/commit/09695059b2ce1c960fb1dc24080bca41576e938e))
|
|
31
|
+
|
|
5
32
|
### [1.16.6](https://github.com/saadeghi/daisyui/compare/v1.16.5...v1.16.6) (2021-12-16)
|
|
6
33
|
|
|
7
34
|
|
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Loading CSS files from CDN is not recommended for production. It's better to ins
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
```html
|
|
82
|
-
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.16.
|
|
82
|
+
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.16.6/dist/full.css" rel="stylesheet" type="text/css" />
|
|
83
83
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
|
|
84
84
|
```
|
|
85
85
|
|
package/dist/full.css
CHANGED
|
@@ -2414,32 +2414,17 @@ html{
|
|
|
2414
2414
|
grid-auto-flow:column;
|
|
2415
2415
|
}
|
|
2416
2416
|
|
|
2417
|
-
.steps
|
|
2417
|
+
.steps [class~=step]{
|
|
2418
2418
|
display:grid;
|
|
2419
2419
|
place-items:center;
|
|
2420
2420
|
text-align:center;
|
|
2421
2421
|
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
2422
|
+
grid-template-columns:auto;
|
|
2422
2423
|
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
2423
2424
|
grid-template-rows:40px 1fr;
|
|
2424
2425
|
min-width:4rem;
|
|
2425
2426
|
}
|
|
2426
2427
|
|
|
2427
|
-
.steps-vertical{
|
|
2428
|
-
grid-auto-rows:1fr;
|
|
2429
|
-
grid-auto-flow:row;
|
|
2430
|
-
}
|
|
2431
|
-
|
|
2432
|
-
.steps-vertical .step{
|
|
2433
|
-
display:grid;
|
|
2434
|
-
grid-template-columns:repeat(2, minmax(0, 1fr));
|
|
2435
|
-
grid-template-columns:40px 1fr;
|
|
2436
|
-
grid-template-rows:repeat(1, minmax(0, 1fr));
|
|
2437
|
-
grid-template-rows:auto;
|
|
2438
|
-
gap:.5rem;
|
|
2439
|
-
min-height:4rem;
|
|
2440
|
-
justify-items:start;
|
|
2441
|
-
}
|
|
2442
|
-
|
|
2443
2428
|
.tabs{
|
|
2444
2429
|
display:flex;
|
|
2445
2430
|
flex-wrap:wrap;
|
|
@@ -4334,7 +4319,7 @@ html{
|
|
|
4334
4319
|
border-top-width:1px;
|
|
4335
4320
|
}
|
|
4336
4321
|
|
|
4337
|
-
.steps
|
|
4322
|
+
.steps [class~=step]:before{
|
|
4338
4323
|
--tw-bg-opacity:1;
|
|
4339
4324
|
background-color:hsla(var(--b3) / var(--tw-bg-opacity, 1));
|
|
4340
4325
|
height:.5rem;
|
|
@@ -4344,18 +4329,25 @@ html{
|
|
|
4344
4329
|
width:100%;
|
|
4345
4330
|
grid-column-start:1;
|
|
4346
4331
|
grid-row-start:1;
|
|
4332
|
+
--tw-translate-x:0;
|
|
4333
|
+
--tw-translate-y:0;
|
|
4334
|
+
--tw-rotate:0;
|
|
4335
|
+
--tw-skew-x:0;
|
|
4336
|
+
--tw-skew-y:0;
|
|
4337
|
+
--tw-scale-x:1;
|
|
4338
|
+
--tw-scale-y:1;
|
|
4339
|
+
transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
4347
4340
|
content:"";
|
|
4348
4341
|
margin-left:-100%;
|
|
4349
4342
|
}
|
|
4350
4343
|
|
|
4351
|
-
.steps
|
|
4344
|
+
.steps [class~=step]:after{
|
|
4352
4345
|
content:counter(step);
|
|
4353
4346
|
counter-increment:step;
|
|
4354
4347
|
z-index:1;
|
|
4355
4348
|
--tw-bg-opacity:1;
|
|
4356
4349
|
background-color:hsla(var(--b3) / var(--tw-bg-opacity, 1));
|
|
4357
4350
|
border-radius:9999px;
|
|
4358
|
-
display:block;
|
|
4359
4351
|
display:grid;
|
|
4360
4352
|
place-items:center;
|
|
4361
4353
|
place-self:center;
|
|
@@ -4368,11 +4360,11 @@ html{
|
|
|
4368
4360
|
grid-row-start:1;
|
|
4369
4361
|
}
|
|
4370
4362
|
|
|
4371
|
-
.steps
|
|
4363
|
+
.steps [class~=step]:first-child:before{
|
|
4372
4364
|
content:none;
|
|
4373
4365
|
}
|
|
4374
4366
|
|
|
4375
|
-
.steps
|
|
4367
|
+
.steps [class~=step][data-content]:after{
|
|
4376
4368
|
content:attr(data-content);
|
|
4377
4369
|
}
|
|
4378
4370
|
|
|
@@ -4452,23 +4444,6 @@ html{
|
|
|
4452
4444
|
color:hsla(var(--b1) / var(--tw-text-opacity, 1));
|
|
4453
4445
|
}
|
|
4454
4446
|
|
|
4455
|
-
.steps-vertical .step:before{
|
|
4456
|
-
height:100%;
|
|
4457
|
-
top:0;
|
|
4458
|
-
width:.5rem;
|
|
4459
|
-
--tw-translate-x:0;
|
|
4460
|
-
--tw-translate-x:-50%;
|
|
4461
|
-
--tw-translate-y:0;
|
|
4462
|
-
--tw-translate-y:-50%;
|
|
4463
|
-
--tw-rotate:0;
|
|
4464
|
-
--tw-skew-x:0;
|
|
4465
|
-
--tw-skew-y:0;
|
|
4466
|
-
--tw-scale-x:1;
|
|
4467
|
-
--tw-scale-y:1;
|
|
4468
|
-
transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
4469
|
-
margin-left:50%;
|
|
4470
|
-
}
|
|
4471
|
-
|
|
4472
4447
|
.tab:hover{
|
|
4473
4448
|
--tw-text-opacity:1;
|
|
4474
4449
|
}
|
|
@@ -4965,20 +4940,21 @@ html{
|
|
|
4965
4940
|
color:inherit;
|
|
4966
4941
|
}
|
|
4967
4942
|
|
|
4968
|
-
.prose
|
|
4969
|
-
color:inherit;
|
|
4970
|
-
}
|
|
4971
|
-
|
|
4972
|
-
.prose .lead:hover,.prose a:hover,.prose a code:hover,.prose blockquote:hover,.prose figure figcaption:hover,.prose h1:hover,.prose h2:hover,.prose h3:hover,.prose h4:hover,.prose strong:hover,.prose thead:hover{
|
|
4943
|
+
.prose :where(a,blockquote,figure figcaption,a code,thead,strong,.lead,h1,h2,h3,h4):not(:where([class~=not-prose] *)){
|
|
4973
4944
|
color:inherit;
|
|
4974
4945
|
}
|
|
4975
4946
|
|
|
4976
|
-
.prose code{
|
|
4977
|
-
background:hsla(var(--bc) / .
|
|
4947
|
+
.prose :where(code):not(:where([class~=not-prose] *)){
|
|
4948
|
+
background:hsla(var(--bc) / .1);
|
|
4978
4949
|
color:hsl(var(--bc));
|
|
4950
|
+
padding:2px 8px;
|
|
4979
4951
|
border-radius:var(--rounded-badge);
|
|
4980
4952
|
}
|
|
4981
4953
|
|
|
4954
|
+
.prose code:after,.prose code:before{
|
|
4955
|
+
content:none;
|
|
4956
|
+
}
|
|
4957
|
+
|
|
4982
4958
|
.prose pre{
|
|
4983
4959
|
background:hsl(var(--n));
|
|
4984
4960
|
color:hsl(var(--nc));
|
|
@@ -4988,14 +4964,7 @@ html{
|
|
|
4988
4964
|
.prose pre code{
|
|
4989
4965
|
border-radius:none;
|
|
4990
4966
|
background:inherit;
|
|
4991
|
-
|
|
4992
|
-
}
|
|
4993
|
-
|
|
4994
|
-
.prose code:after,.prose code:before{
|
|
4995
|
-
content:none;
|
|
4996
|
-
}
|
|
4997
|
-
|
|
4998
|
-
.prose ol>li:before,.prose ol>li:hover:before{
|
|
4967
|
+
padding:0;
|
|
4999
4968
|
color:inherit;
|
|
5000
4969
|
}
|
|
5001
4970
|
|
|
@@ -5003,16 +4972,16 @@ html{
|
|
|
5003
4972
|
border-left-color:hsl(var(--bc) / 40%);
|
|
5004
4973
|
}
|
|
5005
4974
|
|
|
5006
|
-
.prose ul>li:
|
|
5007
|
-
|
|
4975
|
+
.prose :where(ul>li,ol>li):not(:where([class~=not-prose] *))::marker{
|
|
4976
|
+
color:hsl(var(--bc) / 40%);
|
|
5008
4977
|
}
|
|
5009
4978
|
|
|
5010
|
-
.prose thead{
|
|
5011
|
-
|
|
4979
|
+
.prose :where(thead th,tbody td):not(:where([class~=not-prose] *)){
|
|
4980
|
+
color:inherit;
|
|
5012
4981
|
}
|
|
5013
4982
|
|
|
5014
|
-
.prose tbody tr{
|
|
5015
|
-
border-bottom-color:hsl(var(--bc) /
|
|
4983
|
+
.prose :where(tbody tr,thead):not(:where([class~=not-prose] *)){
|
|
4984
|
+
border-bottom-color:hsl(var(--bc) / 20%);
|
|
5016
4985
|
}
|
|
5017
4986
|
|
|
5018
4987
|
@keyframes spin{
|
|
@@ -9472,6 +9441,33 @@ html{
|
|
|
9472
9441
|
min-height:1.5rem;
|
|
9473
9442
|
}
|
|
9474
9443
|
|
|
9444
|
+
.steps-horizontal{
|
|
9445
|
+
grid-auto-columns:1fr;
|
|
9446
|
+
display:inline-grid;
|
|
9447
|
+
overflow:hidden;
|
|
9448
|
+
overflow-x:auto;
|
|
9449
|
+
grid-auto-flow:column;
|
|
9450
|
+
}
|
|
9451
|
+
|
|
9452
|
+
.steps-horizontal [class~=step]{
|
|
9453
|
+
display:grid;
|
|
9454
|
+
place-items:center;
|
|
9455
|
+
text-align:center;
|
|
9456
|
+
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
9457
|
+
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
9458
|
+
}
|
|
9459
|
+
|
|
9460
|
+
.steps-vertical{
|
|
9461
|
+
grid-auto-rows:1fr;
|
|
9462
|
+
grid-auto-flow:row;
|
|
9463
|
+
}
|
|
9464
|
+
|
|
9465
|
+
.steps-vertical [class~=step]{
|
|
9466
|
+
display:grid;
|
|
9467
|
+
grid-template-columns:repeat(2, minmax(0, 1fr));
|
|
9468
|
+
grid-template-rows:repeat(1, minmax(0, 1fr));
|
|
9469
|
+
}
|
|
9470
|
+
|
|
9475
9471
|
.tab-md{
|
|
9476
9472
|
height:2rem;
|
|
9477
9473
|
font-size:.875rem;
|
|
@@ -9718,6 +9714,37 @@ html{
|
|
|
9718
9714
|
margin-top:1rem;
|
|
9719
9715
|
}
|
|
9720
9716
|
|
|
9717
|
+
.steps-horizontal [class~=step]{
|
|
9718
|
+
grid-template-rows:40px 1fr;
|
|
9719
|
+
grid-template-columns:auto;
|
|
9720
|
+
min-width:4rem;
|
|
9721
|
+
}
|
|
9722
|
+
|
|
9723
|
+
.steps-horizontal [class~=step]:before{
|
|
9724
|
+
height:.5rem;
|
|
9725
|
+
width:100%;
|
|
9726
|
+
--tw-translate-x:0px;
|
|
9727
|
+
--tw-translate-y:0px;
|
|
9728
|
+
content:"";
|
|
9729
|
+
margin-left:-100%;
|
|
9730
|
+
}
|
|
9731
|
+
|
|
9732
|
+
.steps-vertical [class~=step]{
|
|
9733
|
+
gap:.5rem;
|
|
9734
|
+
grid-template-columns:40px 1fr;
|
|
9735
|
+
grid-template-rows:auto;
|
|
9736
|
+
min-height:4rem;
|
|
9737
|
+
justify-items:start;
|
|
9738
|
+
}
|
|
9739
|
+
|
|
9740
|
+
.steps-vertical [class~=step]:before{
|
|
9741
|
+
height:100%;
|
|
9742
|
+
width:.5rem;
|
|
9743
|
+
--tw-translate-x:-50%;
|
|
9744
|
+
--tw-translate-y:-50%;
|
|
9745
|
+
margin-left:50%;
|
|
9746
|
+
}
|
|
9747
|
+
|
|
9721
9748
|
@media (min-width:640px){
|
|
9722
9749
|
.sm\:animate-none{
|
|
9723
9750
|
-webkit-animation:none;
|
|
@@ -14107,6 +14134,33 @@ html{
|
|
|
14107
14134
|
min-height:1.5rem;
|
|
14108
14135
|
}
|
|
14109
14136
|
|
|
14137
|
+
.sm\:steps-horizontal{
|
|
14138
|
+
grid-auto-columns:1fr;
|
|
14139
|
+
display:inline-grid;
|
|
14140
|
+
overflow:hidden;
|
|
14141
|
+
overflow-x:auto;
|
|
14142
|
+
grid-auto-flow:column;
|
|
14143
|
+
}
|
|
14144
|
+
|
|
14145
|
+
.sm\:steps-horizontal [class~=step]{
|
|
14146
|
+
display:grid;
|
|
14147
|
+
place-items:center;
|
|
14148
|
+
text-align:center;
|
|
14149
|
+
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
14150
|
+
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
14151
|
+
}
|
|
14152
|
+
|
|
14153
|
+
.sm\:steps-vertical{
|
|
14154
|
+
grid-auto-rows:1fr;
|
|
14155
|
+
grid-auto-flow:row;
|
|
14156
|
+
}
|
|
14157
|
+
|
|
14158
|
+
.sm\:steps-vertical [class~=step]{
|
|
14159
|
+
display:grid;
|
|
14160
|
+
grid-template-columns:repeat(2, minmax(0, 1fr));
|
|
14161
|
+
grid-template-rows:repeat(1, minmax(0, 1fr));
|
|
14162
|
+
}
|
|
14163
|
+
|
|
14110
14164
|
.sm\:tab-md{
|
|
14111
14165
|
height:2rem;
|
|
14112
14166
|
font-size:.875rem;
|
|
@@ -14352,6 +14406,37 @@ html{
|
|
|
14352
14406
|
margin-left:0;
|
|
14353
14407
|
margin-top:1rem;
|
|
14354
14408
|
}
|
|
14409
|
+
|
|
14410
|
+
.sm\:steps-horizontal [class~=step]{
|
|
14411
|
+
grid-template-rows:40px 1fr;
|
|
14412
|
+
grid-template-columns:auto;
|
|
14413
|
+
min-width:4rem;
|
|
14414
|
+
}
|
|
14415
|
+
|
|
14416
|
+
.sm\:steps-horizontal [class~=step]:before{
|
|
14417
|
+
height:.5rem;
|
|
14418
|
+
width:100%;
|
|
14419
|
+
--tw-translate-x:0px;
|
|
14420
|
+
--tw-translate-y:0px;
|
|
14421
|
+
content:"";
|
|
14422
|
+
margin-left:-100%;
|
|
14423
|
+
}
|
|
14424
|
+
|
|
14425
|
+
.sm\:steps-vertical [class~=step]{
|
|
14426
|
+
gap:.5rem;
|
|
14427
|
+
grid-template-columns:40px 1fr;
|
|
14428
|
+
grid-template-rows:auto;
|
|
14429
|
+
min-height:4rem;
|
|
14430
|
+
justify-items:start;
|
|
14431
|
+
}
|
|
14432
|
+
|
|
14433
|
+
.sm\:steps-vertical [class~=step]:before{
|
|
14434
|
+
height:100%;
|
|
14435
|
+
width:.5rem;
|
|
14436
|
+
--tw-translate-x:-50%;
|
|
14437
|
+
--tw-translate-y:-50%;
|
|
14438
|
+
margin-left:50%;
|
|
14439
|
+
}
|
|
14355
14440
|
}
|
|
14356
14441
|
|
|
14357
14442
|
@media (min-width:768px){
|
|
@@ -18743,6 +18828,33 @@ html{
|
|
|
18743
18828
|
min-height:1.5rem;
|
|
18744
18829
|
}
|
|
18745
18830
|
|
|
18831
|
+
.md\:steps-horizontal{
|
|
18832
|
+
grid-auto-columns:1fr;
|
|
18833
|
+
display:inline-grid;
|
|
18834
|
+
overflow:hidden;
|
|
18835
|
+
overflow-x:auto;
|
|
18836
|
+
grid-auto-flow:column;
|
|
18837
|
+
}
|
|
18838
|
+
|
|
18839
|
+
.md\:steps-horizontal [class~=step]{
|
|
18840
|
+
display:grid;
|
|
18841
|
+
place-items:center;
|
|
18842
|
+
text-align:center;
|
|
18843
|
+
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
18844
|
+
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
18845
|
+
}
|
|
18846
|
+
|
|
18847
|
+
.md\:steps-vertical{
|
|
18848
|
+
grid-auto-rows:1fr;
|
|
18849
|
+
grid-auto-flow:row;
|
|
18850
|
+
}
|
|
18851
|
+
|
|
18852
|
+
.md\:steps-vertical [class~=step]{
|
|
18853
|
+
display:grid;
|
|
18854
|
+
grid-template-columns:repeat(2, minmax(0, 1fr));
|
|
18855
|
+
grid-template-rows:repeat(1, minmax(0, 1fr));
|
|
18856
|
+
}
|
|
18857
|
+
|
|
18746
18858
|
.md\:tab-md{
|
|
18747
18859
|
height:2rem;
|
|
18748
18860
|
font-size:.875rem;
|
|
@@ -18988,6 +19100,37 @@ html{
|
|
|
18988
19100
|
margin-left:0;
|
|
18989
19101
|
margin-top:1rem;
|
|
18990
19102
|
}
|
|
19103
|
+
|
|
19104
|
+
.md\:steps-horizontal [class~=step]{
|
|
19105
|
+
grid-template-rows:40px 1fr;
|
|
19106
|
+
grid-template-columns:auto;
|
|
19107
|
+
min-width:4rem;
|
|
19108
|
+
}
|
|
19109
|
+
|
|
19110
|
+
.md\:steps-horizontal [class~=step]:before{
|
|
19111
|
+
height:.5rem;
|
|
19112
|
+
width:100%;
|
|
19113
|
+
--tw-translate-x:0px;
|
|
19114
|
+
--tw-translate-y:0px;
|
|
19115
|
+
content:"";
|
|
19116
|
+
margin-left:-100%;
|
|
19117
|
+
}
|
|
19118
|
+
|
|
19119
|
+
.md\:steps-vertical [class~=step]{
|
|
19120
|
+
gap:.5rem;
|
|
19121
|
+
grid-template-columns:40px 1fr;
|
|
19122
|
+
grid-template-rows:auto;
|
|
19123
|
+
min-height:4rem;
|
|
19124
|
+
justify-items:start;
|
|
19125
|
+
}
|
|
19126
|
+
|
|
19127
|
+
.md\:steps-vertical [class~=step]:before{
|
|
19128
|
+
height:100%;
|
|
19129
|
+
width:.5rem;
|
|
19130
|
+
--tw-translate-x:-50%;
|
|
19131
|
+
--tw-translate-y:-50%;
|
|
19132
|
+
margin-left:50%;
|
|
19133
|
+
}
|
|
18991
19134
|
}
|
|
18992
19135
|
|
|
18993
19136
|
@media (min-width:1024px){
|
|
@@ -23379,6 +23522,33 @@ html{
|
|
|
23379
23522
|
min-height:1.5rem;
|
|
23380
23523
|
}
|
|
23381
23524
|
|
|
23525
|
+
.lg\:steps-horizontal{
|
|
23526
|
+
grid-auto-columns:1fr;
|
|
23527
|
+
display:inline-grid;
|
|
23528
|
+
overflow:hidden;
|
|
23529
|
+
overflow-x:auto;
|
|
23530
|
+
grid-auto-flow:column;
|
|
23531
|
+
}
|
|
23532
|
+
|
|
23533
|
+
.lg\:steps-horizontal [class~=step]{
|
|
23534
|
+
display:grid;
|
|
23535
|
+
place-items:center;
|
|
23536
|
+
text-align:center;
|
|
23537
|
+
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
23538
|
+
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
23539
|
+
}
|
|
23540
|
+
|
|
23541
|
+
.lg\:steps-vertical{
|
|
23542
|
+
grid-auto-rows:1fr;
|
|
23543
|
+
grid-auto-flow:row;
|
|
23544
|
+
}
|
|
23545
|
+
|
|
23546
|
+
.lg\:steps-vertical [class~=step]{
|
|
23547
|
+
display:grid;
|
|
23548
|
+
grid-template-columns:repeat(2, minmax(0, 1fr));
|
|
23549
|
+
grid-template-rows:repeat(1, minmax(0, 1fr));
|
|
23550
|
+
}
|
|
23551
|
+
|
|
23382
23552
|
.lg\:tab-md{
|
|
23383
23553
|
height:2rem;
|
|
23384
23554
|
font-size:.875rem;
|
|
@@ -23624,6 +23794,37 @@ html{
|
|
|
23624
23794
|
margin-left:0;
|
|
23625
23795
|
margin-top:1rem;
|
|
23626
23796
|
}
|
|
23797
|
+
|
|
23798
|
+
.lg\:steps-horizontal [class~=step]{
|
|
23799
|
+
grid-template-rows:40px 1fr;
|
|
23800
|
+
grid-template-columns:auto;
|
|
23801
|
+
min-width:4rem;
|
|
23802
|
+
}
|
|
23803
|
+
|
|
23804
|
+
.lg\:steps-horizontal [class~=step]:before{
|
|
23805
|
+
height:.5rem;
|
|
23806
|
+
width:100%;
|
|
23807
|
+
--tw-translate-x:0px;
|
|
23808
|
+
--tw-translate-y:0px;
|
|
23809
|
+
content:"";
|
|
23810
|
+
margin-left:-100%;
|
|
23811
|
+
}
|
|
23812
|
+
|
|
23813
|
+
.lg\:steps-vertical [class~=step]{
|
|
23814
|
+
gap:.5rem;
|
|
23815
|
+
grid-template-columns:40px 1fr;
|
|
23816
|
+
grid-template-rows:auto;
|
|
23817
|
+
min-height:4rem;
|
|
23818
|
+
justify-items:start;
|
|
23819
|
+
}
|
|
23820
|
+
|
|
23821
|
+
.lg\:steps-vertical [class~=step]:before{
|
|
23822
|
+
height:100%;
|
|
23823
|
+
width:.5rem;
|
|
23824
|
+
--tw-translate-x:-50%;
|
|
23825
|
+
--tw-translate-y:-50%;
|
|
23826
|
+
margin-left:50%;
|
|
23827
|
+
}
|
|
23627
23828
|
}
|
|
23628
23829
|
|
|
23629
23830
|
@media (min-width:1280px){
|
|
@@ -28015,6 +28216,33 @@ html{
|
|
|
28015
28216
|
min-height:1.5rem;
|
|
28016
28217
|
}
|
|
28017
28218
|
|
|
28219
|
+
.xl\:steps-horizontal{
|
|
28220
|
+
grid-auto-columns:1fr;
|
|
28221
|
+
display:inline-grid;
|
|
28222
|
+
overflow:hidden;
|
|
28223
|
+
overflow-x:auto;
|
|
28224
|
+
grid-auto-flow:column;
|
|
28225
|
+
}
|
|
28226
|
+
|
|
28227
|
+
.xl\:steps-horizontal [class~=step]{
|
|
28228
|
+
display:grid;
|
|
28229
|
+
place-items:center;
|
|
28230
|
+
text-align:center;
|
|
28231
|
+
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
28232
|
+
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
28233
|
+
}
|
|
28234
|
+
|
|
28235
|
+
.xl\:steps-vertical{
|
|
28236
|
+
grid-auto-rows:1fr;
|
|
28237
|
+
grid-auto-flow:row;
|
|
28238
|
+
}
|
|
28239
|
+
|
|
28240
|
+
.xl\:steps-vertical [class~=step]{
|
|
28241
|
+
display:grid;
|
|
28242
|
+
grid-template-columns:repeat(2, minmax(0, 1fr));
|
|
28243
|
+
grid-template-rows:repeat(1, minmax(0, 1fr));
|
|
28244
|
+
}
|
|
28245
|
+
|
|
28018
28246
|
.xl\:tab-md{
|
|
28019
28247
|
height:2rem;
|
|
28020
28248
|
font-size:.875rem;
|
|
@@ -28260,6 +28488,37 @@ html{
|
|
|
28260
28488
|
margin-left:0;
|
|
28261
28489
|
margin-top:1rem;
|
|
28262
28490
|
}
|
|
28491
|
+
|
|
28492
|
+
.xl\:steps-horizontal [class~=step]{
|
|
28493
|
+
grid-template-rows:40px 1fr;
|
|
28494
|
+
grid-template-columns:auto;
|
|
28495
|
+
min-width:4rem;
|
|
28496
|
+
}
|
|
28497
|
+
|
|
28498
|
+
.xl\:steps-horizontal [class~=step]:before{
|
|
28499
|
+
height:.5rem;
|
|
28500
|
+
width:100%;
|
|
28501
|
+
--tw-translate-x:0px;
|
|
28502
|
+
--tw-translate-y:0px;
|
|
28503
|
+
content:"";
|
|
28504
|
+
margin-left:-100%;
|
|
28505
|
+
}
|
|
28506
|
+
|
|
28507
|
+
.xl\:steps-vertical [class~=step]{
|
|
28508
|
+
gap:.5rem;
|
|
28509
|
+
grid-template-columns:40px 1fr;
|
|
28510
|
+
grid-template-rows:auto;
|
|
28511
|
+
min-height:4rem;
|
|
28512
|
+
justify-items:start;
|
|
28513
|
+
}
|
|
28514
|
+
|
|
28515
|
+
.xl\:steps-vertical [class~=step]:before{
|
|
28516
|
+
height:100%;
|
|
28517
|
+
width:.5rem;
|
|
28518
|
+
--tw-translate-x:-50%;
|
|
28519
|
+
--tw-translate-y:-50%;
|
|
28520
|
+
margin-left:50%;
|
|
28521
|
+
}
|
|
28263
28522
|
}
|
|
28264
28523
|
|
|
28265
28524
|
@media (min-width:1536px){
|
|
@@ -32651,6 +32910,33 @@ html{
|
|
|
32651
32910
|
min-height:1.5rem;
|
|
32652
32911
|
}
|
|
32653
32912
|
|
|
32913
|
+
.\32xl\:steps-horizontal{
|
|
32914
|
+
grid-auto-columns:1fr;
|
|
32915
|
+
display:inline-grid;
|
|
32916
|
+
overflow:hidden;
|
|
32917
|
+
overflow-x:auto;
|
|
32918
|
+
grid-auto-flow:column;
|
|
32919
|
+
}
|
|
32920
|
+
|
|
32921
|
+
.\32xl\:steps-horizontal [class~=step]{
|
|
32922
|
+
display:grid;
|
|
32923
|
+
place-items:center;
|
|
32924
|
+
text-align:center;
|
|
32925
|
+
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
32926
|
+
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
32927
|
+
}
|
|
32928
|
+
|
|
32929
|
+
.\32xl\:steps-vertical{
|
|
32930
|
+
grid-auto-rows:1fr;
|
|
32931
|
+
grid-auto-flow:row;
|
|
32932
|
+
}
|
|
32933
|
+
|
|
32934
|
+
.\32xl\:steps-vertical [class~=step]{
|
|
32935
|
+
display:grid;
|
|
32936
|
+
grid-template-columns:repeat(2, minmax(0, 1fr));
|
|
32937
|
+
grid-template-rows:repeat(1, minmax(0, 1fr));
|
|
32938
|
+
}
|
|
32939
|
+
|
|
32654
32940
|
.\32xl\:tab-md{
|
|
32655
32941
|
height:2rem;
|
|
32656
32942
|
font-size:.875rem;
|
|
@@ -32896,5 +33182,36 @@ html{
|
|
|
32896
33182
|
margin-left:0;
|
|
32897
33183
|
margin-top:1rem;
|
|
32898
33184
|
}
|
|
33185
|
+
|
|
33186
|
+
.\32xl\:steps-horizontal [class~=step]{
|
|
33187
|
+
grid-template-rows:40px 1fr;
|
|
33188
|
+
grid-template-columns:auto;
|
|
33189
|
+
min-width:4rem;
|
|
33190
|
+
}
|
|
33191
|
+
|
|
33192
|
+
.\32xl\:steps-horizontal [class~=step]:before{
|
|
33193
|
+
height:.5rem;
|
|
33194
|
+
width:100%;
|
|
33195
|
+
--tw-translate-x:0px;
|
|
33196
|
+
--tw-translate-y:0px;
|
|
33197
|
+
content:"";
|
|
33198
|
+
margin-left:-100%;
|
|
33199
|
+
}
|
|
33200
|
+
|
|
33201
|
+
.\32xl\:steps-vertical [class~=step]{
|
|
33202
|
+
gap:.5rem;
|
|
33203
|
+
grid-template-columns:40px 1fr;
|
|
33204
|
+
grid-template-rows:auto;
|
|
33205
|
+
min-height:4rem;
|
|
33206
|
+
justify-items:start;
|
|
33207
|
+
}
|
|
33208
|
+
|
|
33209
|
+
.\32xl\:steps-vertical [class~=step]:before{
|
|
33210
|
+
height:100%;
|
|
33211
|
+
width:.5rem;
|
|
33212
|
+
--tw-translate-x:-50%;
|
|
33213
|
+
--tw-translate-y:-50%;
|
|
33214
|
+
margin-left:50%;
|
|
33215
|
+
}
|
|
32899
33216
|
}
|
|
32900
33217
|
|