@canopy-iiif/app 0.9.3 → 0.9.5
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/lib/build/iiif.js +18 -8
- package/package.json +1 -1
- package/ui/dist/index.mjs +63 -55
- package/ui/dist/index.mjs.map +4 -4
- package/ui/dist/server.mjs +35 -27
- package/ui/dist/server.mjs.map +4 -4
- package/ui/styles/components/_footer.scss +30 -0
- package/ui/styles/components/index.scss +1 -0
- package/ui/styles/index.css +27 -0
package/ui/styles/index.css
CHANGED
|
@@ -474,6 +474,33 @@ html.dark a.canopy-logo svg path.canopy-logo-overlay {
|
|
|
474
474
|
}
|
|
475
475
|
}
|
|
476
476
|
}
|
|
477
|
+
@layer components {
|
|
478
|
+
.canopy-footer {
|
|
479
|
+
border-top: 1px solid var(--color-gray-200, #e2e8f0);
|
|
480
|
+
background: var(--color-gray-25, #f8fafc);
|
|
481
|
+
color: var(--color-gray-600, #475569);
|
|
482
|
+
}
|
|
483
|
+
.canopy-footer__inner {
|
|
484
|
+
margin: 0 auto;
|
|
485
|
+
width: 100%;
|
|
486
|
+
max-width: 72rem;
|
|
487
|
+
padding: 1.5rem 1rem;
|
|
488
|
+
display: flex;
|
|
489
|
+
flex-direction: column;
|
|
490
|
+
gap: 0.75rem;
|
|
491
|
+
font-size: 0.875rem;
|
|
492
|
+
line-height: 1.5;
|
|
493
|
+
text-align: center;
|
|
494
|
+
}
|
|
495
|
+
.canopy-footer__inner > * {
|
|
496
|
+
margin: 0;
|
|
497
|
+
}
|
|
498
|
+
@media (min-width: 48rem) {
|
|
499
|
+
.canopy-footer__inner {
|
|
500
|
+
padding: 2rem 1.5rem;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
477
504
|
@layer components {
|
|
478
505
|
.canopy-modal {
|
|
479
506
|
position: fixed;
|