general-library-union 2.4.8 → 2.4.9
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
|
@@ -30,7 +30,7 @@ export declare class AppMenuitemComponent implements OnInit, OnDestroy {
|
|
|
30
30
|
calculatePosition(overlay: HTMLElement, target: HTMLElement): void;
|
|
31
31
|
itemClick(event: Event): void;
|
|
32
32
|
onMouseEnter(): void;
|
|
33
|
-
get submenuAnimation(): "
|
|
33
|
+
get submenuAnimation(): "collapsed" | "expanded" | "hidden" | "visible";
|
|
34
34
|
get isHorizontal(): boolean;
|
|
35
35
|
get isSlim(): boolean;
|
|
36
36
|
get isSlimPlus(): boolean;
|
|
@@ -277,6 +277,41 @@ color: var(--color-700);
|
|
|
277
277
|
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
+
@media (max-width:600px){
|
|
281
|
+
#not-found img {
|
|
282
|
+
max-width: 16rem;
|
|
283
|
+
margin: 0 auto;
|
|
284
|
+
display: table;
|
|
285
|
+
position: inherit;
|
|
286
|
+
margin-top: 4%;
|
|
287
|
+
}
|
|
288
|
+
.p-inputgroup.mb-4.w-16rem {
|
|
289
|
+
display: table;
|
|
290
|
+
margin: 0 auto;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
#not-found h4 {
|
|
294
|
+
font-size: 4rem;
|
|
295
|
+
text-align: center;
|
|
296
|
+
letter-spacing: 6px;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
#not-found h5 {
|
|
300
|
+
font-size: 1.5rem;
|
|
301
|
+
text-align: center;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
#not-found p {
|
|
305
|
+
font-weight: 600;
|
|
306
|
+
font-size: 0.8rem;
|
|
307
|
+
text-align: center;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
#not-found button {
|
|
311
|
+
margin-top: 4%;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
280
315
|
|
|
281
316
|
/******************************************************************************
|
|
282
317
|
* Timeout styles
|
|
@@ -256,6 +256,58 @@ body {
|
|
|
256
256
|
|
|
257
257
|
}
|
|
258
258
|
|
|
259
|
+
@media (max-width:768px){
|
|
260
|
+
#not-found button{
|
|
261
|
+
font-size: 1rem;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
#not-found img{
|
|
265
|
+
max-width: 17rem;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
#not-found h4{
|
|
269
|
+
font-size: 7rem;
|
|
270
|
+
text-align: left;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
@media (max-width:600px){
|
|
276
|
+
#not-found img {
|
|
277
|
+
max-width: 16rem;
|
|
278
|
+
margin: 0 auto;
|
|
279
|
+
display: table;
|
|
280
|
+
position: inherit;
|
|
281
|
+
margin-top: 4%;
|
|
282
|
+
}
|
|
283
|
+
.p-inputgroup.mb-4.w-16rem {
|
|
284
|
+
display: table;
|
|
285
|
+
margin: 0 auto;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
#not-found h4 {
|
|
289
|
+
font-size: 4rem;
|
|
290
|
+
text-align: center;
|
|
291
|
+
letter-spacing: 6px;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
#not-found h5 {
|
|
295
|
+
font-size: 1.5rem;
|
|
296
|
+
text-align: center;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
#not-found p {
|
|
300
|
+
font-weight: 600;
|
|
301
|
+
font-size: 0.8rem;
|
|
302
|
+
text-align: center;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
#not-found button {
|
|
306
|
+
margin-top: 4%;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
|
|
259
311
|
|
|
260
312
|
|
|
261
313
|
|