From 5061e8f9e446d94cf469db27fd4415e52835ceee Mon Sep 17 00:00:00 2001 From: Dank Gabs Date: Fri, 19 Jul 2019 22:23:32 -0400 Subject: [PATCH] Removed the mixins that were moved from the variables file. --- app/javascript/styles/gabsocial/variables.scss | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/app/javascript/styles/gabsocial/variables.scss b/app/javascript/styles/gabsocial/variables.scss index d606fd88..1ed87fbd 100644 --- a/app/javascript/styles/gabsocial/variables.scss +++ b/app/javascript/styles/gabsocial/variables.scss @@ -29,18 +29,6 @@ $gab-background-container-light: #fff; $gab-default-text-light: #6c6c6c; -// theme mixins -@mixin light-theme-shadow() {box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);} - -// NOTE - probably a better place to put this -@mixin gab-container-standards() { - border-radius: 10px; - background: $gab-background-container; - body.theme-gabsocial-light & { - @include light-theme-shadow(); - background: $gab-background-container-light; - } -}