daisyui 4.4.11 → 4.4.13
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/full.css +11 -4
- package/dist/styled.css +1 -0
- package/dist/styled.js +1 -1
- package/dist/unstyled.css +1 -0
- package/dist/unstyled.js +1 -1
- package/dist/utilities-styled.js +1 -1
- package/package.json +1 -1
package/dist/full.css
CHANGED
|
@@ -3067,7 +3067,8 @@ html {
|
|
|
3067
3067
|
width: 100%}
|
|
3068
3068
|
.drawer-content {
|
|
3069
3069
|
grid-column-start: 2;
|
|
3070
|
-
grid-row-start: 1
|
|
3070
|
+
grid-row-start: 1;
|
|
3071
|
+
overflow-x: auto}
|
|
3071
3072
|
.drawer-side {
|
|
3072
3073
|
pointer-events: none;
|
|
3073
3074
|
position: fixed;
|
|
@@ -22476,9 +22477,15 @@ details.collapse summary::-webkit-details-marker {
|
|
|
22476
22477
|
background-color: var(--tooltip-color);
|
|
22477
22478
|
color: var(--tooltip-text-color);
|
|
22478
22479
|
width: max-content}
|
|
22479
|
-
.tooltip.tooltip-open:before
|
|
22480
|
-
|
|
22481
|
-
|
|
22480
|
+
.tooltip.tooltip-open:before {
|
|
22481
|
+
opacity: 1;
|
|
22482
|
+
transition-delay: 75ms}
|
|
22483
|
+
.tooltip.tooltip-open:after {
|
|
22484
|
+
opacity: 1;
|
|
22485
|
+
transition-delay: 75ms}
|
|
22486
|
+
.tooltip:hover:before {
|
|
22487
|
+
opacity: 1;
|
|
22488
|
+
transition-delay: 75ms}
|
|
22482
22489
|
.tooltip:hover:after {
|
|
22483
22490
|
opacity: 1;
|
|
22484
22491
|
transition-delay: 75ms}
|