From 7afbcb85d00a29fcac0f9f1a2c807092760dd8cf Mon Sep 17 00:00:00 2001 From: Deimos Date: Mon, 14 Sep 2020 17:38:37 -0600 Subject: [PATCH] Revert "Temp: test @supports query for CSS custom props" This reverts commit df64807384b2bedd37684b3346a5a15cc7a7fabc. --- tildes/scss/themes/_theme_mixins.scss | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tildes/scss/themes/_theme_mixins.scss b/tildes/scss/themes/_theme_mixins.scss index 7ffc1c0..7940ebb 100644 --- a/tildes/scss/themes/_theme_mixins.scss +++ b/tildes/scss/themes/_theme_mixins.scss @@ -141,13 +141,6 @@ $theme: init-theme($selected-theme); $is-light: is-color-bright(map-get($theme, "background-primary")); - // Temp: test whether this @supports query works for some users with older browsers - @supports not (--test: green) { - #sidebar { - background-color: #fff; - } - } - // When creating CSS custom properties and using any of Sass' capabilities // you'll have to interpolate it with the Sass syntax `#{...}` as seen below. --alert: #{map-get($theme, "alert")};