general-library-union 2.3.75 → 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 +11 -5
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +12 -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) {
|
|
@@ -182,7 +188,7 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
182
188
|
}
|
|
183
189
|
|
|
184
190
|
#not-found .p-button {
|
|
185
|
-
padding: 0.
|
|
191
|
+
padding: 0.6rem 3rem;
|
|
186
192
|
}
|
|
187
193
|
|
|
188
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 {
|
|
@@ -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,10 @@ body {
|
|
|
175
183
|
}
|
|
176
184
|
|
|
177
185
|
button {
|
|
178
|
-
padding:
|
|
186
|
+
padding:0.6rem 3rem;
|
|
179
187
|
margin-bottom: 7%;
|
|
180
188
|
}
|
|
181
|
-
|
|
189
|
+
|
|
182
190
|
|
|
183
191
|
#not-found .p-button {
|
|
184
192
|
box-shadow: 0px 0px 10px hsla(var(--color-h), 100%, 60%, 0.7);
|