A few minor fixes to website

- cut down on size of bootstrap.css file
- remove unecessary styles
- fixed typo in javascript comment
This commit is contained in:
Cecylia Bocovich 2019-10-15 09:26:31 -04:00
parent ab96817381
commit 93d3564109
3 changed files with 234 additions and 7988 deletions

File diff suppressed because it is too large Load diff

View file

@ -19,7 +19,7 @@
<div class="btn-group dropdown pull-right">
<button id="language-switcher" type="button" class="btn btn-dark bg-dark dropdown-toggle btn-block my-3 my-sm-0" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<button id="language-switcher" type="button" class="btn btn-dark bg-dark dropdown-toggle btn-block" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
en_US
</button>
<div id="supported-languages" class="dropdown-menu">
@ -27,7 +27,7 @@
</div>
</nav>
</header>
<div class="container-fluid">
<div>
<section id="content">
<h1>SNOWFLAKE</h1>

View file

@ -71,7 +71,7 @@ fetch(`./_locales/${getLang()}/messages.json`)
});
});
// Populate language swticher list
// Populate language switcher list
availableLangs.forEach(function (lang) {
var languageList = document.getElementById('supported-languages');
var link = document.createElement('a');