Skip to content

Commit

Permalink
Merge pull request #25 from tekktrik/dev/fix-dark-mode
Browse files Browse the repository at this point in the history
Fix dark mode
  • Loading branch information
tekktrik authored Jan 30, 2024
2 parents 3dd08f3 + a0b4d3a commit e754120
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flask_app/templates/layout/_footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
SPDX-License-Identifier: MIT
-->

<footer class="sticky-footer bg-dark">
<footer class="sticky-footer" style="background-color: black;">
<div class="d-flex justify-content-center">
<p>
Designed with love myself:
Expand Down
2 changes: 1 addition & 1 deletion flask_app/templates/layout/_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


<header>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<nav class="navbar navbar-expand-md navbar-dark fixed-top" style="background-color: black">
<a class="navbar-brand" href="/">
<img src="/static/img/logo_dark.svg" width="50" height="50">
Tekktrik Dev
Expand Down
2 changes: 1 addition & 1 deletion flask_app/templates/layout/_layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
-->

<!DOCTYPE html>
<html>
<html data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
Expand Down

0 comments on commit e754120

Please sign in to comment.