From f37afe8bed50b34c3fa51d43d87caa0eb737b76b Mon Sep 17 00:00:00 2001 From: frectonz Date: Sun, 6 Oct 2024 14:21:11 +0300 Subject: [PATCH] feat: use 1px borders --- ui/index.html | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/ui/index.html b/ui/index.html index 99ec204..63173ea 100644 --- a/ui/index.html +++ b/ui/index.html @@ -19,7 +19,7 @@ .header { display: grid; grid-template-columns: 90% 10%; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .header>div { @@ -30,7 +30,7 @@ } .header__main { - border-right: 2px solid black; + border-right: 1px solid black; } .header__main a { @@ -49,7 +49,7 @@ .status { display: grid; grid-template-columns: 70% 30%; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .status>div { @@ -62,38 +62,38 @@ .status>div>img {} .status__registry { - border-right: 2px solid black; + border-right: 1px solid black; background-color: #86efac; } .page__title { padding: 2rem; font-size: 2rem; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .loading__title { padding: 2rem; font-size: 2rem; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .failure__title { padding: 2rem; font-size: 2rem; background-color: #fca5a5; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .repo { display: grid; grid-template-columns: 10% 80% 10%; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .repo>div { padding: 1rem; - border-right: 2px solid black; + border-right: 1px solid black; } .repo>div:last-child { @@ -103,25 +103,25 @@ .image { display: grid; grid-template-columns: 60% 40%; - border-bottom: 2px solid black; + border-bottom: 1px solid black; margin-bottom: 2rem; } .image>div:first-child { - border-right: 2px solid black; + border-right: 1px solid black; } .layers__title { padding: 1rem 2rem; color: white; background-color: black; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .layers>div { display: grid; grid-template-columns: 80% 20%; - border-bottom: 2px solid black; + border-bottom: 1px solid black; } .layers>div>p { @@ -135,14 +135,14 @@ .layers>div>p:last-child { color: white; background-color: black; - border-top: 2px solid white; + border-top: 1px solid white; } .metadata>div { display: grid; gap: 1rem; padding: 2rem; - border-bottom: 2px solid black; + border-bottom: 1px solid black; }