optimized-react-component-library-xyz123 1.1.2 → 1.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "optimized-react-component-library-xyz123",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "A modern React component library using TypeScript with React 19 support.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -13,14 +13,16 @@
13
13
  "./css/darkMode.css": "./src/css/darkMode.css",
14
14
  "./css/mobileView.css": "./src/css/mobileView.css",
15
15
  "./css/styles.css": "./src/css/styles.css",
16
- "./css/questions.css": "./src/css/questions.css"
16
+ "./css/questions.css": "./src/css/questions.css",
17
+ "./css/FooterStandard.css": "./src/css/FooterStandard.css"
17
18
  },
18
19
  "files": [
19
20
  "dist",
20
21
  "src/css/darkMode.css",
21
22
  "src/css/mobileView.css",
22
23
  "src/css/styles.css",
23
- "src/css/questions.css"
24
+ "src/css/questions.css",
25
+ "src/css/FooterStandard.css"
24
26
  ],
25
27
  "scripts": {
26
28
  "build": "tsup",
@@ -0,0 +1,148 @@
1
+ .pts-footer-container {
2
+ align-items: center;
3
+ width: 100%;
4
+ background-color: var(--background-second);
5
+ }
6
+
7
+ .pts-footer-slogan-text-container {
8
+ display: flex;
9
+ align-items: center;
10
+ justify-content: center;
11
+ background-color: var(--background-third);
12
+ height: 50px;
13
+ padding: 0px;
14
+ }
15
+
16
+ .pts-footer-slogan-text {
17
+ color: var(--main);
18
+ line-height: 2.4rem;
19
+ font-size: 2rem;
20
+ text-box-trim: trim-both;
21
+ margin: 0;
22
+ }
23
+
24
+ .pts-footer-content {
25
+ display: flex;
26
+ align-items: center;
27
+ width: 100%;
28
+ min-height: 14rem;
29
+ padding: 0.1rem 0;
30
+ }
31
+
32
+ .pts-footer-logo {
33
+ width: 154.444px;
34
+ height: 40px;
35
+ padding-left: 70px;
36
+ flex-shrink: 0;
37
+ position: relative;
38
+ }
39
+
40
+ .pts-footer-linkList {
41
+ flex: 1;
42
+ justify-content: center;
43
+ margin-left: -224px;
44
+ }
45
+
46
+ .pts-footer-linkList ul {
47
+ padding: 0;
48
+ padding-top: 15px;
49
+ margin: 0;
50
+ list-style: none;
51
+ display: flex;
52
+ justify-content: center;
53
+ line-height: 25px;
54
+ }
55
+
56
+ .pts-footer-linkList a {
57
+ color: var(--main);
58
+ text-underline-offset: 3px;
59
+ white-space: nowrap;
60
+ }
61
+
62
+ .pts-footer-linkList a span {
63
+ padding-left: 36px;
64
+ padding-right: 36px;
65
+ color: var(--main);
66
+ }
67
+
68
+ .pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
69
+ content: '';
70
+ width: 1px;
71
+ height: 24px;
72
+ border: 0.5px solid;
73
+ color: var(--main);
74
+ position: absolute;
75
+ box-sizing: border-box;
76
+ }
77
+
78
+ /* ---------- HEADER ---------- */
79
+
80
+ .pts-skipLink-container a {
81
+ position: absolute;
82
+ top: -1000px;
83
+ left: 1.8rem;
84
+ transition: top 0.3s ease-in-out;
85
+ background-color: var(--main);
86
+ color: var(--action);
87
+ }
88
+
89
+ .pts-skipLink-container a:focus {
90
+ top: 1.8rem;
91
+ }
92
+
93
+ .pts-header-container {
94
+ display: flex;
95
+ min-height: 80px;
96
+ padding: 0px 70px;
97
+ align-items: center;
98
+ justify-content: space-between;
99
+ background-color: var(--main);
100
+ }
101
+
102
+ .pts-header-content {
103
+ width: 100%;
104
+ display: flex;
105
+ }
106
+
107
+ .pts-header-logo-container {
108
+ height: 4rem;
109
+ }
110
+
111
+ .pts-header-logo svg {
112
+ height: 4rem;
113
+ }
114
+
115
+ .pts-header-navigation-container {
116
+ display: flex;
117
+ flex-direction: column;
118
+ justify-content: flex-end;
119
+ width: 100%;
120
+ align-items: flex-end;
121
+ }
122
+
123
+ .pts-languageButton {
124
+ position: relative;
125
+ display: inline-flex;
126
+ align-items: center;
127
+ background: transparent;
128
+ border: transparent;
129
+ color: var(--action);
130
+ cursor: pointer;
131
+ font-size: 1.6rem;
132
+ }
133
+
134
+ .languageIcon {
135
+ position: relative;
136
+ margin-top: 0.3rem;
137
+ padding-right: 0.6rem;
138
+ top: 0.01rem;
139
+ }
140
+
141
+ .pts-languageButton svg {
142
+ width: 1.6rem;
143
+ height: 1.6rem;
144
+ }
145
+
146
+ .pts-languageButton-text:hover {
147
+ text-decoration: underline 0.2rem;
148
+ }
@@ -683,85 +683,6 @@ input:focus-visible:-webkit-autofill {
683
683
  transition: 0.2s;
684
684
  }
685
685
 
686
- /* ---------- FOOTER ---------- */
687
-
688
- .pts-footer-container {
689
- align-items: center;
690
- width: 100%;
691
- background-color: var(--background-second);
692
- }
693
-
694
- .pts-footer-slogan-text-container {
695
- display: flex;
696
- align-items: center;
697
- justify-content: center;
698
- background-color: var(--background-third);
699
- height: 50px;
700
- padding: 0px;
701
- }
702
-
703
- .pts-footer-slogan-text {
704
- color: var(--main);
705
- line-height: 2.4rem;
706
- font-size: 2rem;
707
- text-box-trim: trim-both;
708
- margin: 0;
709
- }
710
-
711
- .pts-footer-content {
712
- display: flex;
713
- align-items: center;
714
- width: 100%;
715
- min-height: 14rem;
716
- padding: 0.1rem 0;
717
- }
718
-
719
- .pts-footer-logo {
720
- width: 154.444px;
721
- height: 40px;
722
- padding-left: 70px;
723
- flex-shrink: 0;
724
- position: relative;
725
- }
726
-
727
- .pts-footer-linkList {
728
- flex: 1;
729
- justify-content: center;
730
- margin-left: -224px;
731
- }
732
-
733
- .pts-footer-linkList ul {
734
- padding: 0;
735
- padding-top: 15px;
736
- margin: 0;
737
- list-style: none;
738
- display: flex;
739
- justify-content: center;
740
- line-height: 25px;
741
- }
742
-
743
- .pts-footer-linkList a {
744
- color: var(--main);
745
- text-underline-offset: 3px;
746
- white-space: nowrap;
747
- }
748
-
749
- .pts-footer-linkList a span {
750
- padding-left: 36px;
751
- padding-right: 36px;
752
- color: var(--main);
753
- }
754
-
755
- .pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
756
- content: '';
757
- width: 1px;
758
- height: 24px;
759
- border: 0.5px solid;
760
- color: var(--main);
761
- position: absolute;
762
- box-sizing: border-box;
763
- }
764
-
765
686
  /* ---------- MODAL ---------- */
766
687
 
767
688
  .pts-modal-overlay {