general-library-union 2.3.84 → 2.3.86
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 +10 -3
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +10 -3
package/package.json
CHANGED
|
@@ -190,10 +190,10 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
#not-found .p-button {
|
|
193
|
-
padding: 0.6rem
|
|
193
|
+
padding: 0.6rem 4rem;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
|
-
.p-inputgroup-search {
|
|
196
|
+
#not-found .p-inputgroup-search {
|
|
197
197
|
background: #fff;
|
|
198
198
|
padding: .7rem;
|
|
199
199
|
border-radius: 5px 0px 0px 5px;
|
|
@@ -201,9 +201,16 @@ $backgroundToLeft: linear-gradient(to left, $azulColorBtnM, $azulColorBtnM2);
|
|
|
201
201
|
border-right: none;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
#not-found .p-inputgroup input {
|
|
205
|
+
border-left: none;
|
|
206
|
+
border-radius: 0px 5px 5px 0px !important;
|
|
207
|
+
border-left: none;
|
|
208
|
+
border-right: solid 1px var(--color-100) !important;
|
|
209
|
+
}
|
|
210
|
+
|
|
204
211
|
|
|
205
212
|
|
|
206
|
-
.no-found-input {
|
|
213
|
+
#not-found .no-found-input {
|
|
207
214
|
border-radius: 0px 5px 5px 0px !important;
|
|
208
215
|
border-left: none !important;
|
|
209
216
|
}
|
|
@@ -184,7 +184,7 @@ body {
|
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
button {
|
|
187
|
-
padding:0.6rem
|
|
187
|
+
padding:0.6rem 4rem;
|
|
188
188
|
margin-bottom: 7%;
|
|
189
189
|
font-size: 1.1rem;
|
|
190
190
|
}
|
|
@@ -194,7 +194,7 @@ body {
|
|
|
194
194
|
box-shadow: 0px 0px 10px hsla(var(--color-h), 100%, 60%, 0.7);
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
-
.p-inputgroup-search {
|
|
197
|
+
#not-found .p-inputgroup-search {
|
|
198
198
|
background: #fff;
|
|
199
199
|
padding: .7rem;
|
|
200
200
|
border-radius: 5px 0px 0px 5px;
|
|
@@ -202,7 +202,14 @@ body {
|
|
|
202
202
|
border-right: none;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
|
|
205
|
+
#not-found .p-inputgroup input {
|
|
206
|
+
border-left: none;
|
|
207
|
+
border-radius: 0px 5px 5px 0px !important;
|
|
208
|
+
border-left: none;
|
|
209
|
+
border-right: solid 1px var(--color-100) !important;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
#not-found .no-found-input {
|
|
206
213
|
border-radius: 0px 5px 5px 0px !important;
|
|
207
214
|
border-left: none !important;
|
|
208
215
|
}
|