@sikka/hawa 0.0.131 → 0.0.133

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
@@ -553,6 +553,9 @@ video {
553
553
  .top-5 {
554
554
  top: 1.25rem;
555
555
  }
556
+ .-left-1 {
557
+ left: -0.25rem;
558
+ }
556
559
  .top-auto {
557
560
  top: auto;
558
561
  }
@@ -565,9 +568,6 @@ video {
565
568
  .top-2 {
566
569
  top: 0.5rem;
567
570
  }
568
- .-left-1 {
569
- left: -0.25rem;
570
- }
571
571
  .z-10 {
572
572
  z-index: 10;
573
573
  }
@@ -673,6 +673,9 @@ video {
673
673
  .mr-4 {
674
674
  margin-right: 1rem;
675
675
  }
676
+ .mt-14 {
677
+ margin-top: 3.5rem;
678
+ }
676
679
  .mt-5 {
677
680
  margin-top: 1.25rem;
678
681
  }
@@ -835,12 +838,12 @@ video {
835
838
  .w-2\/3 {
836
839
  width: 66.666667%;
837
840
  }
838
- .w-12 {
839
- width: 3rem;
840
- }
841
841
  .w-\[calc\(100\%-3rem\)\] {
842
842
  width: calc(100% - 3rem);
843
843
  }
844
+ .w-12 {
845
+ width: 3rem;
846
+ }
844
847
  .w-\[calc\(100\%-1rem\)\] {
845
848
  width: calc(100% - 1rem);
846
849
  }
@@ -1488,6 +1491,9 @@ video {
1488
1491
  .pl-10 {
1489
1492
  padding-left: 2.5rem;
1490
1493
  }
1494
+ .pr-5 {
1495
+ padding-right: 1.25rem;
1496
+ }
1491
1497
  .pl-3 {
1492
1498
  padding-left: 0.75rem;
1493
1499
  }
@@ -1853,9 +1859,9 @@ body {
1853
1859
  --tw-bg-opacity: 1;
1854
1860
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
1855
1861
  }
1856
- .hover\:bg-primary-400:hover {
1862
+ .hover\:bg-primary-500:hover {
1857
1863
  --tw-bg-opacity: 1;
1858
- background-color: rgb(116 177 251 / var(--tw-bg-opacity));
1864
+ background-color: rgb(61 147 249 / var(--tw-bg-opacity));
1859
1865
  }
1860
1866
  .hover\:text-gray-900:hover {
1861
1867
  --tw-text-opacity: 1;
@@ -11,6 +11,7 @@ interface TMenuTypes {
11
11
  anchor?: any;
12
12
  children?: ReactNode;
13
13
  buttonPosition?: "top-right" | "top-left" | "bottom-right" | "bottom-left";
14
+ onClickOutside?: any;
14
15
  }
15
16
  type MenuItems = {
16
17
  icon?: JSX.Element;