Skip to content

Commit e754120

Browse files
authored
Merge pull request #25 from tekktrik/dev/fix-dark-mode
Fix dark mode
2 parents 3dd08f3 + a0b4d3a commit e754120

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

flask_app/templates/layout/_footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SPDX-License-Identifier: MIT
44
-->
55

6-
<footer class="sticky-footer bg-dark">
6+
<footer class="sticky-footer" style="background-color: black;">
77
<div class="d-flex justify-content-center">
88
<p>
99
Designed with love myself:

flask_app/templates/layout/_header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
<header>
8-
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
8+
<nav class="navbar navbar-expand-md navbar-dark fixed-top" style="background-color: black">
99
<a class="navbar-brand" href="/">
1010
<img src="/static/img/logo_dark.svg" width="50" height="50">
1111
Tekktrik Dev

flask_app/templates/layout/_layout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-->
55

66
<!DOCTYPE html>
7-
<html>
7+
<html data-bs-theme="dark">
88
<head>
99
<meta charset="utf-8">
1010
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

0 commit comments

Comments
 (0)