Spaces:
Running
Running
thibaud frere
commited on
Commit
·
6aa15dc
1
Parent(s):
2efb227
fix double quote numbers in footer
Browse files
app/src/components/Footer.astro
CHANGED
|
@@ -215,6 +215,24 @@ const { citationText, bibtex, licence, doi } = Astro.props as Props;
|
|
| 215 |
}
|
| 216 |
}
|
| 217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 218 |
.references-block li {
|
| 219 |
margin-bottom: 1em;
|
| 220 |
}
|
|
|
|
| 215 |
}
|
| 216 |
}
|
| 217 |
|
| 218 |
+
/* Avoid duplicate numbering: hide native list markers for CSL references only */
|
| 219 |
+
.references-block #references ol,
|
| 220 |
+
.references-block .references ol,
|
| 221 |
+
.references-block .bibliography ol {
|
| 222 |
+
list-style: none;
|
| 223 |
+
padding-left: 0;
|
| 224 |
+
margin-left: 0;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
@media (min-width: 768px) {
|
| 228 |
+
.references-block #references ol,
|
| 229 |
+
.references-block .references ol,
|
| 230 |
+
.references-block .bibliography ol {
|
| 231 |
+
padding-left: 0;
|
| 232 |
+
margin-left: 0;
|
| 233 |
+
}
|
| 234 |
+
}
|
| 235 |
+
|
| 236 |
.references-block li {
|
| 237 |
margin-bottom: 1em;
|
| 238 |
}
|