@sikka/hawa 0.0.240 → 0.0.242

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
@@ -1,5 +1,5 @@
1
1
  /*
2
- ! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
2
+ ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
3
3
  *//*
4
4
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
5
5
  2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
@@ -167,6 +167,8 @@ optgroup,
167
167
  select,
168
168
  textarea {
169
169
  font-family: inherit; /* 1 */
170
+ font-feature-settings: inherit; /* 1 */
171
+ font-variation-settings: inherit; /* 1 */
170
172
  font-size: 100%; /* 1 */
171
173
  font-weight: inherit; /* 1 */
172
174
  line-height: inherit; /* 1 */
@@ -304,6 +306,13 @@ menu {
304
306
  padding: 0;
305
307
  }
306
308
 
309
+ /*
310
+ Reset default styling for dialogs.
311
+ */
312
+ dialog {
313
+ padding: 0;
314
+ }
315
+
307
316
  /*
308
317
  Prevent resizing textareas horizontally by default.
309
318
  */
@@ -627,6 +636,9 @@ video {
627
636
  .right-4 {
628
637
  right: 1rem;
629
638
  }
639
+ .right-8 {
640
+ right: 2rem;
641
+ }
630
642
  .top-0 {
631
643
  top: 0px;
632
644
  }
@@ -889,6 +901,9 @@ video {
889
901
  .h-6 {
890
902
  height: 1.5rem;
891
903
  }
904
+ .h-64 {
905
+ height: 16rem;
906
+ }
892
907
  .h-7 {
893
908
  height: 1.75rem;
894
909
  }
@@ -955,6 +970,9 @@ video {
955
970
  .w-1\/3 {
956
971
  width: 33.333333%;
957
972
  }
973
+ .w-1\/4 {
974
+ width: 25%;
975
+ }
958
976
  .w-10 {
959
977
  width: 2.5rem;
960
978
  }
@@ -973,6 +991,9 @@ video {
973
991
  .w-2\/3 {
974
992
  width: 66.666667%;
975
993
  }
994
+ .w-2\/4 {
995
+ width: 50%;
996
+ }
976
997
  .w-20 {
977
998
  width: 5rem;
978
999
  }
@@ -1035,6 +1056,9 @@ video {
1035
1056
  width: -moz-min-content;
1036
1057
  width: min-content;
1037
1058
  }
1059
+ .w-screen {
1060
+ width: 100vw;
1061
+ }
1038
1062
  .min-w-\[24px\] {
1039
1063
  min-width: 24px;
1040
1064
  }
@@ -1286,6 +1310,9 @@ video {
1286
1310
  .overflow-y-clip {
1287
1311
  overflow-y: clip;
1288
1312
  }
1313
+ .overflow-y-scroll {
1314
+ overflow-y: scroll;
1315
+ }
1289
1316
  .truncate {
1290
1317
  overflow: hidden;
1291
1318
  text-overflow: ellipsis;
@@ -2201,6 +2228,11 @@ body {
2201
2228
  background-color: rgb(191 219 254 / var(--tw-bg-opacity));
2202
2229
  }
2203
2230
 
2231
+ .hover\:bg-blue-500:hover {
2232
+ --tw-bg-opacity: 1;
2233
+ background-color: rgb(59 130 246 / var(--tw-bg-opacity));
2234
+ }
2235
+
2204
2236
  .hover\:bg-buttonPrimary-500:hover {
2205
2237
  background-color: var(--button-primary-500);
2206
2238
  }