@canopy-iiif/app 0.10.32 → 0.12.0
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/dev.js +109 -11
- package/package.json +1 -1
- package/ui/dist/server.mjs +4049 -44
- package/ui/dist/server.mjs.map +4 -4
- package/ui/styles/components/_interstitial-hero.scss +17 -0
- package/ui/styles/index.css +13 -0
|
@@ -116,6 +116,23 @@
|
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
&--hero-text {
|
|
120
|
+
margin-bottom: 0;
|
|
121
|
+
|
|
122
|
+
.canopy-interstitial__body {
|
|
123
|
+
align-items: center;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.canopy-interstitial__panel {
|
|
127
|
+
padding: 1.618rem 0 1rem;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.canopy-interstitial__description {
|
|
131
|
+
color: var(--color-accent-800);
|
|
132
|
+
font-size: 0.9222rem;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
119
136
|
&__slider {
|
|
120
137
|
position: relative;
|
|
121
138
|
width: 100%;
|
package/ui/styles/index.css
CHANGED
|
@@ -1017,6 +1017,19 @@ section[data-footnotes] ul li,
|
|
|
1017
1017
|
font-size: 2.618rem;
|
|
1018
1018
|
}
|
|
1019
1019
|
}
|
|
1020
|
+
.canopy-interstitial--hero-text {
|
|
1021
|
+
margin-bottom: 0;
|
|
1022
|
+
}
|
|
1023
|
+
.canopy-interstitial--hero-text .canopy-interstitial__body {
|
|
1024
|
+
align-items: center;
|
|
1025
|
+
}
|
|
1026
|
+
.canopy-interstitial--hero-text .canopy-interstitial__panel {
|
|
1027
|
+
padding: 1.618rem 0 1rem;
|
|
1028
|
+
}
|
|
1029
|
+
.canopy-interstitial--hero-text .canopy-interstitial__description {
|
|
1030
|
+
color: var(--color-accent-800);
|
|
1031
|
+
font-size: 0.9222rem;
|
|
1032
|
+
}
|
|
1020
1033
|
.canopy-interstitial__slider {
|
|
1021
1034
|
position: relative;
|
|
1022
1035
|
width: 100%;
|