From 2bbf35b4e97af54e921489719d22ff26a5ead653 Mon Sep 17 00:00:00 2001 From: traxys Date: Sun, 28 May 2023 19:47:27 +0200 Subject: [PATCH] app: Change the color of hr --- app/index.html | 1 + app/static/style.css | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 app/static/style.css diff --git a/app/index.html b/app/index.html index 947a6c9..6562ef0 100644 --- a/app/index.html +++ b/app/index.html @@ -8,6 +8,7 @@ href="/bootstrap-icons/font/bootstrap-icons.min.css" rel="stylesheet" /> + diff --git a/app/static/style.css b/app/static/style.css new file mode 100644 index 0000000..e52048b --- /dev/null +++ b/app/static/style.css @@ -0,0 +1,4 @@ +hr { + border: 1px solid #595c5f; + opacity: 1; +}