@rileybathurst/paddle 0.0.45 → 0.0.47
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 +1 -1
- package/src/styles/layout.css +34 -1
package/package.json
CHANGED
package/src/styles/layout.css
CHANGED
|
@@ -36,7 +36,7 @@ footer {
|
|
|
36
36
|
|
|
37
37
|
.condor,
|
|
38
38
|
.location {
|
|
39
|
-
max-width: var(--condor), calc(100vw - var(--denali));
|
|
39
|
+
max-width: min(var(--condor), calc(100vw - var(--denali)));
|
|
40
40
|
flex-basis: var(--condor);
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -129,6 +129,39 @@ header {
|
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
+
/*------------------------------------*/
|
|
133
|
+
/* #BLOCK END */
|
|
134
|
+
/* this seems like something you could do more interesting in a programatic way */
|
|
135
|
+
/*------------------------------------*/
|
|
136
|
+
|
|
137
|
+
.everest-block-end {
|
|
138
|
+
margin-block-end: var(--everest);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.aconcagua-block-end {
|
|
142
|
+
margin-block-end: var(--aconcagua);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.denali-block-end {
|
|
146
|
+
margin-block-end: var(--denali);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.kilimanjaro-block-end {
|
|
150
|
+
margin-block-end: var(--kilimanjaro);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.elbrus-block-end {
|
|
154
|
+
margin-block-end: var(--elbrus);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.vinson-block-end {
|
|
158
|
+
margin-block-end: var(--vinson);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.kosciuszko-block-end {
|
|
162
|
+
margin-block-end: var(--kosciuszko);
|
|
163
|
+
}
|
|
164
|
+
|
|
132
165
|
/*------------------*/
|
|
133
166
|
/* #TOP BAR */
|
|
134
167
|
/*------------------*/
|