From 691f82d346a308b3a2552ad4f0c21ab1f4e53708 Mon Sep 17 00:00:00 2001 From: Jeremy Kescher Date: Sat, 27 Aug 2022 11:24:24 +0200 Subject: [PATCH] Oatstodon flavour: Make avatars rounded squares again rather than circles --- app/javascript/flavours/glitch/styles/oatstodon.scss | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/app/javascript/flavours/glitch/styles/oatstodon.scss b/app/javascript/flavours/glitch/styles/oatstodon.scss index 88f8572470..c630bad7c1 100644 --- a/app/javascript/flavours/glitch/styles/oatstodon.scss +++ b/app/javascript/flavours/glitch/styles/oatstodon.scss @@ -3,25 +3,22 @@ /* customize ya stuff */ :root { --border-radius: 5px; - + /* rgb for transparency to work */ --text-color: 217, 225, 232; --text-color-secondary: 96, 105, 132; /* less bright, for unimportant bits */ - + --background-color: 18, 18, 37; --background-color-brighter: 22, 22, 47; --app-background-color: 8, 8, 17; /* used only for the VERY background in the back */ - + --accent-color: 39, 183, 145; --accent-color-secondary: 62, 91, 84; /* less saturated ver of --accent-color */ --accent-color-bright: 92, 193, 162; } -/* here for you to remove */ - .account__avatar-overlay-base, .account__avatar-overlay-overlay, .account__avatar { - border-radius: 50%; - /* border-bottom-right-radius: 15%; */ /* uncomment for teardrop */ + border-radius: var(--border-radius); } /* roundening shenanigans */