From 2dfb7b90e0a8b658aa196fcbfb5e88936dbbe9bd Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 8 Oct 2023 20:40:56 +0300 Subject: [PATCH] fix improper usage of linear-gradient --- files/assets/css/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/assets/css/main.css b/files/assets/css/main.css index 36400d1840..74a5260325 100644 --- a/files/assets/css/main.css +++ b/files/assets/css/main.css @@ -5785,7 +5785,7 @@ html { padding: 2px 5px 3px 5px; border-radius: 5px; color:white!important; - background: linear-gradient(left, red, orange, yellow, green, blue, indigo, violet ); + background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet ); text-shadow:-1px -1px 0 black,1px -1px 0 black,-1px 1px 0 black,1px 1px 0 black; } @@ -6535,7 +6535,7 @@ g { margin: 5px 1px; border-radius: 5px; color:white!important; - background: linear-gradient(left, red, orange, yellow, green, blue, indigo, violet ); + background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet ); text-shadow:-1px -1px 0 black,1px -1px 0 black,-1px 1px 0 black,1px 1px 0 black; font-weight: 600; border: 2px solid var(--primary); @@ -6604,7 +6604,7 @@ g { .btn-rainbow { color:white !important; - background: linear-gradient(left, red, orange, yellow, green, blue, indigo, violet ) !important; + background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet ) !important; text-shadow:-1px -1px 0 black,1px -1px 0 black,-1px 1px 0 black,1px 1px 0 black !important; }