Skip to content

Commit

Permalink
new favicon + text black in ssettings
Browse files Browse the repository at this point in the history
  • Loading branch information
jb1011 committed Dec 3, 2023
1 parent f2eb112 commit 2225159
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
color: #111;
}
</style>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/png+xml" href="/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
</head>

Expand Down
Binary file added frontend/public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion frontend/src/components/Settings/Setting.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
}

.Setting-on {
color: #fff;
color: #000;
}

.Setting .Icon {
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/Stats/Stats.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.

.Stats-category {
text-align: left;
background-color: #fff;
background-color: #000;
margin-bottom: 2.5rem;
padding: 1rem;
}
Expand All @@ -37,7 +37,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
}

.Stats-category tr:nth-child(even) {
background-color: #eee;
background-color: #000;
}

.Stats-percent {
Expand Down
4 changes: 2 additions & 2 deletions frontend/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ module.exports = {
// Use our index.html as a starting point (to add script links etc to)
// and make sure to use/copy over the favicon too.
new HtmlWebpackPlugin({
favicon: "./assets/favicon.svg",
template: "./assets/index.html"
favicon: "./assets/favicon.ico",
template: "./assets/index.html"
}),
],
resolve: {
Expand Down

0 comments on commit 2225159

Please sign in to comment.