general-library-union 2.3.75 → 2.3.78
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/esm2022/src/app/publico/pages/not-found/not-found.page.mjs +3 -3
- package/fesm2022/general-library-union.mjs +2 -2
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/primeng/sass/overrides/_theme_styles.scss +12 -5
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +13 -4
package/package.json
CHANGED
|
@@ -121,11 +121,16 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
121
121
|
align-items: center;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
p{
|
|
125
|
+
font-weight: 600;
|
|
126
|
+
}
|
|
127
|
+
|
|
124
128
|
|
|
125
129
|
img {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
130
|
+
max-width: 50rem;
|
|
131
|
+
width: 100%;
|
|
132
|
+
padding-right: 20%;
|
|
133
|
+
}
|
|
129
134
|
|
|
130
135
|
h4 {
|
|
131
136
|
color: $white;
|
|
@@ -154,7 +159,8 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
154
159
|
font-weight: 500;
|
|
155
160
|
margin: 0;
|
|
156
161
|
margin-bottom: 20px;
|
|
157
|
-
text-align:
|
|
162
|
+
text-align: left;
|
|
163
|
+
margin-bottom: 10px;
|
|
158
164
|
|
|
159
165
|
|
|
160
166
|
@include breakpoint(large) {
|
|
@@ -172,6 +178,7 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
172
178
|
font-weight: bold;
|
|
173
179
|
box-shadow: 0px 1px 7px var(--color-300);
|
|
174
180
|
margin-top: 15%;
|
|
181
|
+
font-size: 1.05rem;
|
|
175
182
|
}
|
|
176
183
|
}
|
|
177
184
|
|
|
@@ -182,7 +189,7 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
182
189
|
}
|
|
183
190
|
|
|
184
191
|
#not-found .p-button {
|
|
185
|
-
padding: 0.
|
|
192
|
+
padding: 0.6rem 3rem;
|
|
186
193
|
}
|
|
187
194
|
|
|
188
195
|
|
|
@@ -130,11 +130,18 @@ body {
|
|
|
130
130
|
align-items: center;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
p{
|
|
134
|
+
font-weight: 600;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
|
|
133
138
|
|
|
134
139
|
|
|
135
140
|
img {
|
|
136
|
-
|
|
137
|
-
|
|
141
|
+
max-width: 50rem;
|
|
142
|
+
width: 100%;
|
|
143
|
+
padding-right: 20%;
|
|
144
|
+
}
|
|
138
145
|
}
|
|
139
146
|
|
|
140
147
|
h4 {
|
|
@@ -166,6 +173,7 @@ body {
|
|
|
166
173
|
margin-bottom: 20px;
|
|
167
174
|
text-align: left;
|
|
168
175
|
margin-top: 15%;
|
|
176
|
+
margin-bottom: 10px;
|
|
169
177
|
|
|
170
178
|
|
|
171
179
|
@include breakpoint(large) {
|
|
@@ -175,10 +183,11 @@ body {
|
|
|
175
183
|
}
|
|
176
184
|
|
|
177
185
|
button {
|
|
178
|
-
padding:
|
|
186
|
+
padding:0.6rem 3rem;
|
|
179
187
|
margin-bottom: 7%;
|
|
188
|
+
font-size: 1.05rem;
|
|
180
189
|
}
|
|
181
|
-
|
|
190
|
+
|
|
182
191
|
|
|
183
192
|
#not-found .p-button {
|
|
184
193
|
box-shadow: 0px 0px 10px hsla(var(--color-h), 100%, 60%, 0.7);
|