daisyui 2.39.1 → 2.40.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/README.md +1 -1
- package/dist/full.css +1 -1
- package/dist/styled.css +21 -19
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +20 -19
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/package.json +1 -1
package/dist/styled.css
CHANGED
|
@@ -63,26 +63,27 @@
|
|
|
63
63
|
padding-right: 0.563rem
|
|
64
64
|
}
|
|
65
65
|
.btm-nav {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
66
|
+
position: fixed;
|
|
67
|
+
bottom: 0px;
|
|
68
|
+
left: 0px;
|
|
69
|
+
right: 0px;
|
|
70
|
+
display: flex;
|
|
71
|
+
width: 100%;
|
|
72
|
+
flex-direction: row;
|
|
73
|
+
align-items: center;
|
|
74
|
+
justify-content: space-around;
|
|
75
|
+
padding-bottom: env(safe-area-inset-bottom)
|
|
75
76
|
}
|
|
76
77
|
.btm-nav>* {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
78
|
+
position: relative;
|
|
79
|
+
display: flex;
|
|
80
|
+
height: 100%;
|
|
81
|
+
flex-basis: 100%;
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
flex-direction: column;
|
|
84
|
+
align-items: center;
|
|
85
|
+
justify-content: center;
|
|
86
|
+
gap: 0.25rem
|
|
86
87
|
}
|
|
87
88
|
.breadcrumbs {
|
|
88
89
|
max-width: 100%;
|
|
@@ -294,7 +295,7 @@
|
|
|
294
295
|
.collapse:not(.collapse-close)
|
|
295
296
|
input[type="checkbox"]:checked
|
|
296
297
|
~ .collapse-content {
|
|
297
|
-
max-height:
|
|
298
|
+
max-height: none;
|
|
298
299
|
}
|
|
299
300
|
:root .countdown {
|
|
300
301
|
line-height: 1em;
|
|
@@ -2468,6 +2469,7 @@
|
|
|
2468
2469
|
--tw-text-opacity: 1;
|
|
2469
2470
|
color: hsl(var(--nc) / var(--tw-text-opacity));
|
|
2470
2471
|
text-decoration-line: none;
|
|
2472
|
+
border-radius: var(--rounded-btn, 0.5rem);
|
|
2471
2473
|
border-width: var(--border-btn, 1px);
|
|
2472
2474
|
animation: button-pop var(--animation-btn, 0.25s) ease-out;
|
|
2473
2475
|
text-transform: var(--btn-text-case, uppercase);
|