2 Svelte allows to set ':global(rule)' in components which get added to the bundle.css
3 file. https://svelte.dev/docs#style But the rules get added to the top of bundle.css,
4 before we load the Bootstrap CSS rules. We want to have our rules at the end of
8 a { text-decoration: none }
9 a:hover { text-decoration: underline; }
10 a.btn:hover { text-decoration: none; }
12 .form-control::placeholder {
17 html[data-bs-theme=dark] img.mapicon {
18 /* invert the image colors */
19 filter: invert(1) hue-rotate(180deg);
20 background-color: transparent;