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; }