From 211e1b79a29033285c88bb1d6a021510e14b4d6c Mon Sep 17 00:00:00 2001 From: cybrejon Date: Sat, 9 Dec 2023 21:12:28 +0800 Subject: [PATCH] chores: fix duplicate footer selector and remove unknown pseudo-class --- public/static/themes/simple.css | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/public/static/themes/simple.css b/public/static/themes/simple.css index 7555e6a..03c27c7 100644 --- a/public/static/themes/simple.css +++ b/public/static/themes/simple.css @@ -76,11 +76,7 @@ button { .search_bar input::placeholder { color: var(--foreground-color); - opacity: 1; /* Firefox */ -} - -.search_bar input::input-placeholder { /* Edge 12 -18 */ - color: var(--foreground-color); + opacity: 1; } .search_bar button { @@ -241,20 +237,21 @@ button { /* styles for the footer and header */ -header, -footer { + +header { width: 100%; background: var(--background-color); display: flex; align-items: center; -} - -header { justify-content: space-between; padding: 2rem 3rem; } footer { + width: 100%; + background: var(--background-color); + display: flex; + align-items: center; padding: 1.7rem 1.7rem 4rem; gap: 1.8rem; }