general-library-union 2.3.74 → 2.3.76
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) {
|
|
@@ -171,6 +177,7 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
171
177
|
color: #fff;
|
|
172
178
|
font-weight: bold;
|
|
173
179
|
box-shadow: 0px 1px 7px var(--color-300);
|
|
180
|
+
margin-top: 15%;
|
|
174
181
|
}
|
|
175
182
|
}
|
|
176
183
|
|
|
@@ -181,7 +188,7 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
181
188
|
}
|
|
182
189
|
|
|
183
190
|
#not-found .p-button {
|
|
184
|
-
padding: 0.
|
|
191
|
+
padding: 0.6rem 3rem;
|
|
185
192
|
}
|
|
186
193
|
|
|
187
194
|
|
|
@@ -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 {
|
|
@@ -165,6 +172,8 @@ body {
|
|
|
165
172
|
margin: 0;
|
|
166
173
|
margin-bottom: 20px;
|
|
167
174
|
text-align: left;
|
|
175
|
+
margin-top: 15%;
|
|
176
|
+
margin-bottom: 10px;
|
|
168
177
|
|
|
169
178
|
|
|
170
179
|
@include breakpoint(large) {
|
|
@@ -174,10 +183,10 @@ body {
|
|
|
174
183
|
}
|
|
175
184
|
|
|
176
185
|
button {
|
|
177
|
-
padding:
|
|
186
|
+
padding:0.6rem 3rem;
|
|
178
187
|
margin-bottom: 7%;
|
|
179
188
|
}
|
|
180
|
-
|
|
189
|
+
|
|
181
190
|
|
|
182
191
|
#not-found .p-button {
|
|
183
192
|
box-shadow: 0px 0px 10px hsla(var(--color-h), 100%, 60%, 0.7);
|