daisyui 2.18.0 → 2.19.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/dist/styled.css CHANGED
@@ -951,47 +951,29 @@
951
951
  cursor: pointer
952
952
  }
953
953
  .select {
954
-
955
- display: inline-flex;
956
-
957
- flex-shrink: 0;
958
-
959
- cursor: pointer;
960
-
961
- -webkit-user-select: none;
962
-
963
- user-select: none;
964
-
965
- appearance: none;
966
-
967
- height: 3rem;
968
-
969
- padding-left: 1rem;
970
-
971
- padding-right: 2.5rem;
972
-
973
- font-size: 0.875rem;
974
-
975
- line-height: 1.25rem;
976
-
977
- line-height: 2;
978
-
979
- min-height: 3rem
980
- }
954
+ display: inline-flex;
955
+ flex-shrink: 0;
956
+ cursor: pointer;
957
+ -webkit-user-select: none;
958
+ user-select: none;
959
+ appearance: none;
960
+ height: 3rem;
961
+ padding-left: 1rem;
962
+ padding-right: 2.5rem;
963
+ font-size: 0.875rem;
964
+ line-height: 1.25rem;
965
+ line-height: 2;
966
+ min-height: 3rem
981
967
 
982
968
  /* disabled */
983
-
984
- .select-disabled,
985
- .select[disabled] {
986
-
987
- pointer-events: none
969
+ /* &-disabled,
970
+ &[disabled] {
971
+ @apply pointer-events-none;
972
+ } */
988
973
  }
989
-
990
974
  /* multiple */
991
-
992
975
  .select[multiple] {
993
-
994
- height: auto
976
+ height: auto
995
977
  }
996
978
  .stack {
997
979
  display: inline-grid;
@@ -1154,6 +1136,12 @@
1154
1136
  line-height: 2;
1155
1137
  min-height: 3rem
1156
1138
  }
1139
+ .toast {
1140
+ position: fixed;
1141
+ display: flex;
1142
+ min-width: fit-content;
1143
+ flex-direction: column
1144
+ }
1157
1145
  .toggle {
1158
1146
  flex-shrink: 0
1159
1147
  }
@@ -3840,6 +3828,24 @@ body[dir="rtl"] .checkbox:checked,
3840
3828
  color: hsl(var(--bc) / var(--tw-placeholder-opacity));
3841
3829
  --tw-placeholder-opacity: 0.2;
3842
3830
  }
3831
+ .toast{
3832
+ gap: 0.5rem;
3833
+ padding: 1rem;
3834
+ }
3835
+ .toast>*{
3836
+ animation: toast-pop 0.25s ease-out;
3837
+ }
3838
+
3839
+ @keyframes toast-pop {
3840
+ 0% {
3841
+ transform: scale(0.9);
3842
+ opacity: 0;
3843
+ }
3844
+ 100% {
3845
+ transform: scale(1);
3846
+ opacity: 1;
3847
+ }
3848
+ }
3843
3849
  .toggle {
3844
3850
  --chkbg: hsla(var(--bc) / 0.2);
3845
3851
  --handleoffset: 1.5rem;
@@ -4068,7 +4074,7 @@ body[dir="rtl"] .checkbox:checked,
4068
4074
  content: none;
4069
4075
  }
4070
4076
  .prose pre code{
4071
- border-radius: none;
4077
+ border-radius: 0;
4072
4078
  padding: 0;
4073
4079
  }
4074
4080
  .prose :where(tbody tr, thead):not(:where([class~="not-prose"] *)){