phoenix_duskmoon 4.4.0 → 4.4.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [4.4.2](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.4.1...v4.4.2) (2023-05-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Fix z-index. ([d9face9](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/d9face9005799095b63119d291efd8bdb66e738c))
7
+
8
+ ## [4.4.1](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.4.0...v4.4.1) (2023-04-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Fix page header and page footer responsive design. ([5bb5ed6](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/5bb5ed6de68db74b586007359d91fd14a736ed0d))
14
+
1
15
  # [4.4.0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.3.2...v4.4.0) (2023-04-20)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phoenix_duskmoon",
3
- "version": "4.4.0",
3
+ "version": "4.4.2",
4
4
  "main": "./priv/static/phoenix_duskmoon.js",
5
5
  "exports": {
6
6
  ".": "./priv/static/phoenix_duskmoon.js",
@@ -43,6 +43,18 @@
43
43
  top: 0.5rem;
44
44
  }
45
45
 
46
+ .top-12 {
47
+ top: 3rem;
48
+ }
49
+
50
+ .left-0 {
51
+ left: 0px;
52
+ }
53
+
54
+ .right-0 {
55
+ right: 0px;
56
+ }
57
+
46
58
  .top-0 {
47
59
  top: 0px;
48
60
  }
@@ -222,6 +234,10 @@
222
234
  user-select: none;
223
235
  }
224
236
 
237
+ .grid-cols-2 {
238
+ grid-template-columns: repeat(2, minmax(0, 1fr));
239
+ }
240
+
225
241
  .grid-cols-\[6em_auto\] {
226
242
  grid-template-columns: 6em auto;
227
243
  }
@@ -428,6 +444,16 @@
428
444
  padding-bottom: 5rem;
429
445
  }
430
446
 
447
+ .px-8 {
448
+ padding-left: 2rem;
449
+ padding-right: 2rem;
450
+ }
451
+
452
+ .px-12 {
453
+ padding-left: 3rem;
454
+ padding-right: 3rem;
455
+ }
456
+
431
457
  .py-3 {
432
458
  padding-top: 0.75rem;
433
459
  padding-bottom: 0.75rem;
@@ -786,6 +812,10 @@
786
812
  z-index: 20;
787
813
  }
788
814
 
815
+ .peer:checked ~ .peer-checked\:flex {
816
+ display: flex;
817
+ }
818
+
789
819
  @media (prefers-color-scheme: dark) {
790
820
  .dark\:bg-blue-900 {
791
821
  --tw-bg-opacity: 1;
@@ -824,6 +854,10 @@
824
854
  display: none;
825
855
  }
826
856
 
857
+ .md\:grid-cols-3 {
858
+ grid-template-columns: repeat(3, minmax(0, 1fr));
859
+ }
860
+
827
861
  .md\:before\:hidden::before {
828
862
  content: var(--tw-content);
829
863
  display: none;
@@ -831,7 +865,15 @@
831
865
  }
832
866
 
833
867
  @media (min-width: 1024px) {
868
+ .lg\:flex {
869
+ display: flex;
870
+ }
871
+
834
872
  .lg\:inline-flex {
835
873
  display: inline-flex;
836
874
  }
875
+
876
+ .lg\:hidden {
877
+ display: none;
878
+ }
837
879
  }