Skip to content

Commit

Permalink
Develop (#7)
Browse files Browse the repository at this point in the history
 * Improvements to color-contrast
 * Moved tips and FAQ into the middle
 * New Home Button
 * New Changelog
 * New graph in "Show all stats"
 * Small text tweaks
  • Loading branch information
muckelba authored Dec 2, 2023
1 parent f768f31 commit 032f2b1
Show file tree
Hide file tree
Showing 12 changed files with 298 additions and 76 deletions.
107 changes: 63 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
"@creativebulma/bulma-divider": "^1.1.0",
"@sveltejs/adapter-static": "^2.0.1",
"@sveltejs/kit": "^1.20.4",
"bulma": "^0.9.4",
"chart.js": "^4.4.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"bulma": "^0.9.4",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.53.0",
Expand Down
7 changes: 6 additions & 1 deletion src/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $notification-padding-ltr: 0.8rem 1.5rem 0.8rem 1.5rem;
$modal-content-width: 66%;
$card-radius: $radius-large;
$orange-invert: findColorInvert($orange);
$footer-background-color: darken($background, 4);

$custom-colors: (
"orange": (
Expand Down Expand Up @@ -42,6 +43,10 @@ button.setting-button {
filter: brightness(0.8);
}

.darker-bg {
background-color: $background !important;
}

/* Import only what you need from Bulma */
@import "bulma/sass/utilities/_all";
@import "bulma/sass/base/_all";
Expand Down Expand Up @@ -94,7 +99,7 @@ $divider-margin-size: 0px;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
background-color: darken($grey-darker, 4);
border-radius: 34px;
transition: 0.4s;

Expand Down
40 changes: 40 additions & 0 deletions src/lib/changelog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"changelog": [
{
"date": "25.03.2023",
"note": "Release"
},
{
"date": "06.05.2023",
"note": "Warning for browsers with slow scanrate"
},
{
"date": "26.06.2023",
"note": "Controller support, new FAQ entries"
},
{
"date": "14.08.2023",
"note": "New FAQ entries"
},
{
"date": "09.11.2023",
"note": "Revised text and added more info all over the site. Especially in the FAQ and helpful tips. New \"Superglide Tutorial\" button. Hid analytics wit auto expand."
},
{
"date": "15.11.2023",
"note": "Holding shift no longer prevents other inputs"
},
{
"date": "16.11.2023",
"note": "Fixed ctrl and shift binds"
},
{
"date": "24.11.2023",
"note": "Fixed scrollwheel binds"
},
{
"date": "01.12.2023",
"note": "Improvements to color-contrast. Moved tips and FAQ into the middle. New Home Button. New Changelog. New graph in \"Show all stats\". Small text tweaks."
}
]
}
Loading

0 comments on commit 032f2b1

Please sign in to comment.