@pzh-ui/css 0.0.51 → 0.0.53

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/config/index.js CHANGED
@@ -14,6 +14,7 @@ module.exports = {
14
14
  require('@tailwindcss/line-clamp'),
15
15
  require('@tailwindcss/forms'),
16
16
  require('@tailwindcss/custom-forms'),
17
+ require('@tailwindcss/typography'),
17
18
  ],
18
19
  theme: {
19
20
  screens: {
@@ -231,6 +232,17 @@ module.exports = {
231
232
  boxShadow: {
232
233
  card: '0px 18px 60px rgba(0, 0, 0, 0.07), 0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275), 0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725)',
233
234
  },
235
+ typography: {
236
+ DEFAULT: {
237
+ css: {
238
+ li: {
239
+ p: {
240
+ margin: 0,
241
+ },
242
+ },
243
+ },
244
+ },
245
+ },
234
246
  },
235
247
  },
236
248
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pzh-ui/css",
3
- "version": "0.0.51",
3
+ "version": "0.0.53",
4
4
  "description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
5
5
  "license": "ISC",
6
6
  "publishConfig": {
@@ -17,9 +17,10 @@
17
17
  "@tailwindcss/custom-forms": "^0.2.1",
18
18
  "@tailwindcss/forms": "^0.5.0",
19
19
  "@tailwindcss/line-clamp": "^0.3.1",
20
+ "@tailwindcss/typography": "^0.5.9",
20
21
  "react-datepicker": "^4.7.0"
21
22
  },
22
- "gitHead": "b0a8192cae5196e55e8bea1f289cabe5543c8276",
23
+ "gitHead": "010598f76ac34e0d179fbccf22dfe74f81dfc0c2",
23
24
  "devDependencies": {
24
25
  "tailwindcss": "^3.0.23"
25
26
  }
package/src/tailwind.css CHANGED
@@ -673,6 +673,503 @@ select {
673
673
  }
674
674
  }
675
675
 
676
+ .prose {
677
+ color: var(--tw-prose-body);
678
+ max-width: 65ch;
679
+ }
680
+
681
+ .prose :where(p):not(:where([class~="not-prose"] *)) {
682
+ margin-top: 1.25em;
683
+ margin-bottom: 1.25em;
684
+ }
685
+
686
+ .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
687
+ color: var(--tw-prose-lead);
688
+ font-size: 1.25em;
689
+ line-height: 1.6;
690
+ margin-top: 1.2em;
691
+ margin-bottom: 1.2em;
692
+ }
693
+
694
+ .prose :where(a):not(:where([class~="not-prose"] *)) {
695
+ color: var(--tw-prose-links);
696
+ text-decoration: underline;
697
+ font-weight: 500;
698
+ }
699
+
700
+ .prose :where(strong):not(:where([class~="not-prose"] *)) {
701
+ color: var(--tw-prose-bold);
702
+ font-weight: 600;
703
+ }
704
+
705
+ .prose :where(a strong):not(:where([class~="not-prose"] *)) {
706
+ color: inherit;
707
+ }
708
+
709
+ .prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
710
+ color: inherit;
711
+ }
712
+
713
+ .prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
714
+ color: inherit;
715
+ }
716
+
717
+ .prose :where(ol):not(:where([class~="not-prose"] *)) {
718
+ list-style-type: decimal;
719
+ margin-top: 1.25em;
720
+ margin-bottom: 1.25em;
721
+ padding-left: 1.625em;
722
+ }
723
+
724
+ .prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
725
+ list-style-type: upper-alpha;
726
+ }
727
+
728
+ .prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
729
+ list-style-type: lower-alpha;
730
+ }
731
+
732
+ .prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
733
+ list-style-type: upper-alpha;
734
+ }
735
+
736
+ .prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
737
+ list-style-type: lower-alpha;
738
+ }
739
+
740
+ .prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
741
+ list-style-type: upper-roman;
742
+ }
743
+
744
+ .prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
745
+ list-style-type: lower-roman;
746
+ }
747
+
748
+ .prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
749
+ list-style-type: upper-roman;
750
+ }
751
+
752
+ .prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
753
+ list-style-type: lower-roman;
754
+ }
755
+
756
+ .prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
757
+ list-style-type: decimal;
758
+ }
759
+
760
+ .prose :where(ul):not(:where([class~="not-prose"] *)) {
761
+ list-style-type: disc;
762
+ margin-top: 1.25em;
763
+ margin-bottom: 1.25em;
764
+ padding-left: 1.625em;
765
+ }
766
+
767
+ .prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
768
+ font-weight: 400;
769
+ color: var(--tw-prose-counters);
770
+ }
771
+
772
+ .prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
773
+ color: var(--tw-prose-bullets);
774
+ }
775
+
776
+ .prose :where(hr):not(:where([class~="not-prose"] *)) {
777
+ border-color: var(--tw-prose-hr);
778
+ border-top-width: 1px;
779
+ margin-top: 3em;
780
+ margin-bottom: 3em;
781
+ }
782
+
783
+ .prose :where(blockquote):not(:where([class~="not-prose"] *)) {
784
+ font-weight: 500;
785
+ font-style: italic;
786
+ color: var(--tw-prose-quotes);
787
+ border-left-width: 0.25rem;
788
+ border-left-color: var(--tw-prose-quote-borders);
789
+ quotes: "\201C""\201D""\2018""\2019";
790
+ margin-top: 1.6em;
791
+ margin-bottom: 1.6em;
792
+ padding-left: 1em;
793
+ }
794
+
795
+ .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
796
+ content: open-quote;
797
+ }
798
+
799
+ .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
800
+ content: close-quote;
801
+ }
802
+
803
+ .prose :where(h1):not(:where([class~="not-prose"] *)) {
804
+ color: var(--tw-prose-headings);
805
+ font-weight: 800;
806
+ font-size: 2.25em;
807
+ margin-top: 0;
808
+ margin-bottom: 0.8888889em;
809
+ line-height: 1.1111111;
810
+ }
811
+
812
+ .prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
813
+ font-weight: 900;
814
+ color: inherit;
815
+ }
816
+
817
+ .prose :where(h2):not(:where([class~="not-prose"] *)) {
818
+ color: var(--tw-prose-headings);
819
+ font-weight: 700;
820
+ font-size: 1.5em;
821
+ margin-top: 2em;
822
+ margin-bottom: 1em;
823
+ line-height: 1.3333333;
824
+ }
825
+
826
+ .prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
827
+ font-weight: 800;
828
+ color: inherit;
829
+ }
830
+
831
+ .prose :where(h3):not(:where([class~="not-prose"] *)) {
832
+ color: var(--tw-prose-headings);
833
+ font-weight: 600;
834
+ font-size: 1.25em;
835
+ margin-top: 1.6em;
836
+ margin-bottom: 0.6em;
837
+ line-height: 1.6;
838
+ }
839
+
840
+ .prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
841
+ font-weight: 700;
842
+ color: inherit;
843
+ }
844
+
845
+ .prose :where(h4):not(:where([class~="not-prose"] *)) {
846
+ color: var(--tw-prose-headings);
847
+ font-weight: 600;
848
+ margin-top: 1.5em;
849
+ margin-bottom: 0.5em;
850
+ line-height: 1.5;
851
+ }
852
+
853
+ .prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
854
+ font-weight: 700;
855
+ color: inherit;
856
+ }
857
+
858
+ .prose :where(img):not(:where([class~="not-prose"] *)) {
859
+ margin-top: 2em;
860
+ margin-bottom: 2em;
861
+ }
862
+
863
+ .prose :where(figure > *):not(:where([class~="not-prose"] *)) {
864
+ margin-top: 0;
865
+ margin-bottom: 0;
866
+ }
867
+
868
+ .prose :where(figcaption):not(:where([class~="not-prose"] *)) {
869
+ color: var(--tw-prose-captions);
870
+ font-size: 0.875em;
871
+ line-height: 1.4285714;
872
+ margin-top: 0.8571429em;
873
+ }
874
+
875
+ .prose :where(code):not(:where([class~="not-prose"] *)) {
876
+ color: var(--tw-prose-code);
877
+ font-weight: 600;
878
+ font-size: 0.875em;
879
+ }
880
+
881
+ .prose :where(code):not(:where([class~="not-prose"] *))::before {
882
+ content: "`";
883
+ }
884
+
885
+ .prose :where(code):not(:where([class~="not-prose"] *))::after {
886
+ content: "`";
887
+ }
888
+
889
+ .prose :where(a code):not(:where([class~="not-prose"] *)) {
890
+ color: inherit;
891
+ }
892
+
893
+ .prose :where(h1 code):not(:where([class~="not-prose"] *)) {
894
+ color: inherit;
895
+ }
896
+
897
+ .prose :where(h2 code):not(:where([class~="not-prose"] *)) {
898
+ color: inherit;
899
+ font-size: 0.875em;
900
+ }
901
+
902
+ .prose :where(h3 code):not(:where([class~="not-prose"] *)) {
903
+ color: inherit;
904
+ font-size: 0.9em;
905
+ }
906
+
907
+ .prose :where(h4 code):not(:where([class~="not-prose"] *)) {
908
+ color: inherit;
909
+ }
910
+
911
+ .prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
912
+ color: inherit;
913
+ }
914
+
915
+ .prose :where(thead th code):not(:where([class~="not-prose"] *)) {
916
+ color: inherit;
917
+ }
918
+
919
+ .prose :where(pre):not(:where([class~="not-prose"] *)) {
920
+ color: var(--tw-prose-pre-code);
921
+ background-color: var(--tw-prose-pre-bg);
922
+ overflow-x: auto;
923
+ font-weight: 400;
924
+ font-size: 0.875em;
925
+ line-height: 1.7142857;
926
+ margin-top: 1.7142857em;
927
+ margin-bottom: 1.7142857em;
928
+ border-radius: 0.375rem;
929
+ padding-top: 0.8571429em;
930
+ padding-right: 1.1428571em;
931
+ padding-bottom: 0.8571429em;
932
+ padding-left: 1.1428571em;
933
+ }
934
+
935
+ .prose :where(pre code):not(:where([class~="not-prose"] *)) {
936
+ background-color: transparent;
937
+ border-width: 0;
938
+ border-radius: 0;
939
+ padding: 0;
940
+ font-weight: inherit;
941
+ color: inherit;
942
+ font-size: inherit;
943
+ font-family: inherit;
944
+ line-height: inherit;
945
+ }
946
+
947
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::before {
948
+ content: none;
949
+ }
950
+
951
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::after {
952
+ content: none;
953
+ }
954
+
955
+ .prose :where(table):not(:where([class~="not-prose"] *)) {
956
+ width: 100%;
957
+ table-layout: auto;
958
+ text-align: left;
959
+ margin-top: 2em;
960
+ margin-bottom: 2em;
961
+ font-size: 0.875em;
962
+ line-height: 1.7142857;
963
+ }
964
+
965
+ .prose :where(thead):not(:where([class~="not-prose"] *)) {
966
+ border-bottom-width: 1px;
967
+ border-bottom-color: var(--tw-prose-th-borders);
968
+ }
969
+
970
+ .prose :where(thead th):not(:where([class~="not-prose"] *)) {
971
+ color: var(--tw-prose-headings);
972
+ font-weight: 600;
973
+ vertical-align: bottom;
974
+ padding-right: 0.5714286em;
975
+ padding-bottom: 0.5714286em;
976
+ padding-left: 0.5714286em;
977
+ }
978
+
979
+ .prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
980
+ border-bottom-width: 1px;
981
+ border-bottom-color: var(--tw-prose-td-borders);
982
+ }
983
+
984
+ .prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
985
+ border-bottom-width: 0;
986
+ }
987
+
988
+ .prose :where(tbody td):not(:where([class~="not-prose"] *)) {
989
+ vertical-align: baseline;
990
+ }
991
+
992
+ .prose :where(tfoot):not(:where([class~="not-prose"] *)) {
993
+ border-top-width: 1px;
994
+ border-top-color: var(--tw-prose-th-borders);
995
+ }
996
+
997
+ .prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
998
+ vertical-align: top;
999
+ }
1000
+
1001
+ .prose {
1002
+ --tw-prose-body: #374151;
1003
+ --tw-prose-headings: #111827;
1004
+ --tw-prose-lead: #4b5563;
1005
+ --tw-prose-links: #111827;
1006
+ --tw-prose-bold: #111827;
1007
+ --tw-prose-counters: #6b7280;
1008
+ --tw-prose-bullets: #d1d5db;
1009
+ --tw-prose-hr: #e5e7eb;
1010
+ --tw-prose-quotes: #111827;
1011
+ --tw-prose-quote-borders: #e5e7eb;
1012
+ --tw-prose-captions: #6b7280;
1013
+ --tw-prose-code: #111827;
1014
+ --tw-prose-pre-code: #e5e7eb;
1015
+ --tw-prose-pre-bg: #1f2937;
1016
+ --tw-prose-th-borders: #d1d5db;
1017
+ --tw-prose-td-borders: #e5e7eb;
1018
+ --tw-prose-invert-body: #d1d5db;
1019
+ --tw-prose-invert-headings: #fff;
1020
+ --tw-prose-invert-lead: #9ca3af;
1021
+ --tw-prose-invert-links: #fff;
1022
+ --tw-prose-invert-bold: #fff;
1023
+ --tw-prose-invert-counters: #9ca3af;
1024
+ --tw-prose-invert-bullets: #4b5563;
1025
+ --tw-prose-invert-hr: #374151;
1026
+ --tw-prose-invert-quotes: #f3f4f6;
1027
+ --tw-prose-invert-quote-borders: #374151;
1028
+ --tw-prose-invert-captions: #9ca3af;
1029
+ --tw-prose-invert-code: #fff;
1030
+ --tw-prose-invert-pre-code: #d1d5db;
1031
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
1032
+ --tw-prose-invert-th-borders: #4b5563;
1033
+ --tw-prose-invert-td-borders: #374151;
1034
+ font-size: 1rem;
1035
+ line-height: 1.75;
1036
+ }
1037
+
1038
+ .prose :where(video):not(:where([class~="not-prose"] *)) {
1039
+ margin-top: 2em;
1040
+ margin-bottom: 2em;
1041
+ }
1042
+
1043
+ .prose :where(figure):not(:where([class~="not-prose"] *)) {
1044
+ margin-top: 2em;
1045
+ margin-bottom: 2em;
1046
+ }
1047
+
1048
+ .prose :where(li):not(:where([class~="not-prose"] *)) {
1049
+ margin-top: 0.5em;
1050
+ margin-bottom: 0.5em;
1051
+ }
1052
+
1053
+ .prose :where(li):not(:where([class~="not-prose"] *)) p {
1054
+ margin: 0;
1055
+ }
1056
+
1057
+ .prose :where(ol > li):not(:where([class~="not-prose"] *)) {
1058
+ padding-left: 0.375em;
1059
+ }
1060
+
1061
+ .prose :where(ul > li):not(:where([class~="not-prose"] *)) {
1062
+ padding-left: 0.375em;
1063
+ }
1064
+
1065
+ .prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1066
+ margin-top: 0.75em;
1067
+ margin-bottom: 0.75em;
1068
+ }
1069
+
1070
+ .prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1071
+ margin-top: 1.25em;
1072
+ }
1073
+
1074
+ .prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1075
+ margin-bottom: 1.25em;
1076
+ }
1077
+
1078
+ .prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1079
+ margin-top: 1.25em;
1080
+ }
1081
+
1082
+ .prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1083
+ margin-bottom: 1.25em;
1084
+ }
1085
+
1086
+ .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
1087
+ margin-top: 0.75em;
1088
+ margin-bottom: 0.75em;
1089
+ }
1090
+
1091
+ .prose :where(hr + *):not(:where([class~="not-prose"] *)) {
1092
+ margin-top: 0;
1093
+ }
1094
+
1095
+ .prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
1096
+ margin-top: 0;
1097
+ }
1098
+
1099
+ .prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
1100
+ margin-top: 0;
1101
+ }
1102
+
1103
+ .prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
1104
+ margin-top: 0;
1105
+ }
1106
+
1107
+ .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
1108
+ padding-left: 0;
1109
+ }
1110
+
1111
+ .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
1112
+ padding-right: 0;
1113
+ }
1114
+
1115
+ .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
1116
+ padding-top: 0.5714286em;
1117
+ padding-right: 0.5714286em;
1118
+ padding-bottom: 0.5714286em;
1119
+ padding-left: 0.5714286em;
1120
+ }
1121
+
1122
+ .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
1123
+ padding-left: 0;
1124
+ }
1125
+
1126
+ .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
1127
+ padding-right: 0;
1128
+ }
1129
+
1130
+ .prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1131
+ margin-top: 0;
1132
+ }
1133
+
1134
+ .prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1135
+ margin-bottom: 0;
1136
+ }
1137
+
1138
+ .prose-neutral {
1139
+ --tw-prose-body: #404040;
1140
+ --tw-prose-headings: #171717;
1141
+ --tw-prose-lead: #525252;
1142
+ --tw-prose-links: #171717;
1143
+ --tw-prose-bold: #171717;
1144
+ --tw-prose-counters: #737373;
1145
+ --tw-prose-bullets: #d4d4d4;
1146
+ --tw-prose-hr: #e5e5e5;
1147
+ --tw-prose-quotes: #171717;
1148
+ --tw-prose-quote-borders: #e5e5e5;
1149
+ --tw-prose-captions: #737373;
1150
+ --tw-prose-code: #171717;
1151
+ --tw-prose-pre-code: #e5e5e5;
1152
+ --tw-prose-pre-bg: #262626;
1153
+ --tw-prose-th-borders: #d4d4d4;
1154
+ --tw-prose-td-borders: #e5e5e5;
1155
+ --tw-prose-invert-body: #d4d4d4;
1156
+ --tw-prose-invert-headings: #fff;
1157
+ --tw-prose-invert-lead: #a3a3a3;
1158
+ --tw-prose-invert-links: #fff;
1159
+ --tw-prose-invert-bold: #fff;
1160
+ --tw-prose-invert-counters: #a3a3a3;
1161
+ --tw-prose-invert-bullets: #525252;
1162
+ --tw-prose-invert-hr: #404040;
1163
+ --tw-prose-invert-quotes: #f5f5f5;
1164
+ --tw-prose-invert-quote-borders: #404040;
1165
+ --tw-prose-invert-captions: #a3a3a3;
1166
+ --tw-prose-invert-code: #fff;
1167
+ --tw-prose-invert-pre-code: #d4d4d4;
1168
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
1169
+ --tw-prose-invert-th-borders: #525252;
1170
+ --tw-prose-invert-td-borders: #404040;
1171
+ }
1172
+
676
1173
  .sr-only {
677
1174
  position: absolute;
678
1175
  width: 1px;
@@ -769,6 +1266,10 @@ select {
769
1266
  z-index: 50;
770
1267
  }
771
1268
 
1269
+ .col-span-6 {
1270
+ grid-column: span 6 / span 6;
1271
+ }
1272
+
772
1273
  .m-0 {
773
1274
  margin: 0px;
774
1275
  }
@@ -843,6 +1344,10 @@ select {
843
1344
  margin-bottom: 0.5rem;
844
1345
  }
845
1346
 
1347
+ .mb-0 {
1348
+ margin-bottom: 0px;
1349
+ }
1350
+
846
1351
  .mt-2 {
847
1352
  margin-top: 0.5rem;
848
1353
  }
@@ -851,6 +1356,10 @@ select {
851
1356
  margin-left: 0.25rem;
852
1357
  }
853
1358
 
1359
+ .-mt-1 {
1360
+ margin-top: -0.25rem;
1361
+ }
1362
+
854
1363
  .block {
855
1364
  display: block;
856
1365
  }
@@ -871,6 +1380,10 @@ select {
871
1380
  display: table;
872
1381
  }
873
1382
 
1383
+ .grid {
1384
+ display: grid;
1385
+ }
1386
+
874
1387
  .contents {
875
1388
  display: contents;
876
1389
  }
@@ -931,14 +1444,14 @@ select {
931
1444
  width: 1.5rem;
932
1445
  }
933
1446
 
934
- .w-\[96px\] {
935
- width: 96px;
936
- }
937
-
938
1447
  .w-full {
939
1448
  width: 100%;
940
1449
  }
941
1450
 
1451
+ .w-\[96px\] {
1452
+ width: 96px;
1453
+ }
1454
+
942
1455
  .w-4 {
943
1456
  width: 1rem;
944
1457
  }
@@ -947,6 +1460,10 @@ select {
947
1460
  width: 8px;
948
1461
  }
949
1462
 
1463
+ .w-8 {
1464
+ width: 2rem;
1465
+ }
1466
+
950
1467
  .max-w-screen-xl {
951
1468
  max-width: 1280px;
952
1469
  }
@@ -955,10 +1472,18 @@ select {
955
1472
  max-width: 72rem;
956
1473
  }
957
1474
 
1475
+ .max-w-\[300px\] {
1476
+ max-width: 300px;
1477
+ }
1478
+
958
1479
  .max-w-\[2rem\] {
959
1480
  max-width: 2rem;
960
1481
  }
961
1482
 
1483
+ .max-w-full {
1484
+ max-width: 100%;
1485
+ }
1486
+
962
1487
  .translate-y-2 {
963
1488
  --tw-translate-y: 0.5rem;
964
1489
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@@ -1008,6 +1533,10 @@ select {
1008
1533
  resize: none;
1009
1534
  }
1010
1535
 
1536
+ .grid-cols-6 {
1537
+ grid-template-columns: repeat(6, minmax(0, 1fr));
1538
+ }
1539
+
1011
1540
  .items-start {
1012
1541
  align-items: flex-start;
1013
1542
  }
@@ -1024,6 +1553,10 @@ select {
1024
1553
  justify-content: space-between;
1025
1554
  }
1026
1555
 
1556
+ .gap-2 {
1557
+ gap: 0.5rem;
1558
+ }
1559
+
1027
1560
  .overflow-hidden {
1028
1561
  overflow: hidden;
1029
1562
  }
@@ -1036,6 +1569,16 @@ select {
1036
1569
  overflow-y: visible;
1037
1570
  }
1038
1571
 
1572
+ .truncate {
1573
+ overflow: hidden;
1574
+ text-overflow: ellipsis;
1575
+ white-space: nowrap;
1576
+ }
1577
+
1578
+ .whitespace-nowrap {
1579
+ white-space: nowrap;
1580
+ }
1581
+
1039
1582
  .break-words {
1040
1583
  overflow-wrap: break-word;
1041
1584
  }
@@ -1115,6 +1658,11 @@ select {
1115
1658
  border-color: rgb(131 131 131 / var(--tw-border-opacity));
1116
1659
  }
1117
1660
 
1661
+ .border-pzh-purple {
1662
+ --tw-border-opacity: 1;
1663
+ border-color: rgb(80 61 144 / var(--tw-border-opacity));
1664
+ }
1665
+
1118
1666
  .border-pzh-blue-dark {
1119
1667
  --tw-border-opacity: 1;
1120
1668
  border-color: rgb(22 17 59 / var(--tw-border-opacity));
@@ -1125,6 +1673,11 @@ select {
1125
1673
  border-color: rgb(173 172 186 / var(--tw-border-opacity));
1126
1674
  }
1127
1675
 
1676
+ .border-pzh-gray-600 {
1677
+ --tw-border-opacity: 1;
1678
+ border-color: rgb(138 136 157 / var(--tw-border-opacity));
1679
+ }
1680
+
1128
1681
  .border-opacity-35 {
1129
1682
  --tw-border-opacity: 0.35;
1130
1683
  }
@@ -1182,6 +1735,11 @@ select {
1182
1735
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
1183
1736
  }
1184
1737
 
1738
+ .bg-pzh-gray-100 {
1739
+ --tw-bg-opacity: 1;
1740
+ background-color: rgb(245 245 245 / var(--tw-bg-opacity));
1741
+ }
1742
+
1185
1743
  .bg-pzh-gray-200 {
1186
1744
  --tw-bg-opacity: 1;
1187
1745
  background-color: rgb(235 235 235 / var(--tw-bg-opacity));
@@ -1211,6 +1769,10 @@ select {
1211
1769
  padding: 0.5rem;
1212
1770
  }
1213
1771
 
1772
+ .p-4 {
1773
+ padding: 1rem;
1774
+ }
1775
+
1214
1776
  .px-1\.5 {
1215
1777
  padding-left: 0.375rem;
1216
1778
  padding-right: 0.375rem;
@@ -1397,6 +1959,10 @@ select {
1397
1959
  line-height: 28px;
1398
1960
  }
1399
1961
 
1962
+ .leading-6 {
1963
+ line-height: 1.5rem;
1964
+ }
1965
+
1400
1966
  .leading-none {
1401
1967
  line-height: 1;
1402
1968
  }
@@ -1436,6 +2002,11 @@ select {
1436
2002
  color: rgb(131 131 131 / var(--tw-text-opacity));
1437
2003
  }
1438
2004
 
2005
+ .text-pzh-purple {
2006
+ --tw-text-opacity: 1;
2007
+ color: rgb(80 61 144 / var(--tw-text-opacity));
2008
+ }
2009
+
1439
2010
  .text-white {
1440
2011
  --tw-text-opacity: 1;
1441
2012
  color: rgb(255 255 255 / var(--tw-text-opacity));
@@ -1497,6 +2068,11 @@ select {
1497
2068
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1498
2069
  }
1499
2070
 
2071
+ .blur {
2072
+ --tw-blur: blur(8px);
2073
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
2074
+ }
2075
+
1500
2076
  .filter {
1501
2077
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1502
2078
  }
@@ -2018,6 +2594,24 @@ b {
2018
2594
  box-shadow: none !important;
2019
2595
  }
2020
2596
 
2597
+ .ProseMirror p.is-editor-empty:first-child::before {
2598
+ content: attr(data-placeholder);
2599
+ float: left;
2600
+ color: #adb5bd;
2601
+ pointer-events: none;
2602
+ height: 0;
2603
+ }
2604
+
2605
+ .marker\:text-pzh-blue-dark *::marker {
2606
+ --tw-text-opacity: 1;
2607
+ color: rgb(22 17 59 / var(--tw-text-opacity));
2608
+ }
2609
+
2610
+ .marker\:text-pzh-blue-dark::marker {
2611
+ --tw-text-opacity: 1;
2612
+ color: rgb(22 17 59 / var(--tw-text-opacity));
2613
+ }
2614
+
2021
2615
  .hover\:translate-y-0:hover {
2022
2616
  --tw-translate-y: 0px;
2023
2617
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@@ -2221,6 +2815,14 @@ b {
2221
2815
  }
2222
2816
 
2223
2817
  @media (min-width: 768px) {
2818
+ .md\:col-span-2 {
2819
+ grid-column: span 2 / span 2;
2820
+ }
2821
+
2822
+ .md\:col-span-4 {
2823
+ grid-column: span 4 / span 4;
2824
+ }
2825
+
2224
2826
  .md\:ml-4 {
2225
2827
  margin-left: 1rem;
2226
2828
  }
@@ -2233,6 +2835,10 @@ b {
2233
2835
  display: none;
2234
2836
  }
2235
2837
 
2838
+ .md\:gap-8 {
2839
+ gap: 2rem;
2840
+ }
2841
+
2236
2842
  .md\:p-4 {
2237
2843
  padding: 1rem;
2238
2844
  }
@@ -305,3 +305,11 @@ b {
305
305
  .pzh-select-input input {
306
306
  box-shadow: none !important;
307
307
  }
308
+
309
+ .ProseMirror p.is-editor-empty:first-child::before {
310
+ content: attr(data-placeholder);
311
+ float: left;
312
+ color: #adb5bd;
313
+ pointer-events: none;
314
+ height: 0;
315
+ }