From eac39615f0f965a724dd83b7b9ad7be024e9e373 Mon Sep 17 00:00:00 2001 From: winston Date: Tue, 21 Nov 2023 10:30:10 +0100 Subject: [PATCH] fix(lichess): svg for queen piece --- styles/lichess/catppuccin.user.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/styles/lichess/catppuccin.user.css b/styles/lichess/catppuccin.user.css index bd5a79ee2f..f22675f939 100644 --- a/styles/lichess/catppuccin.user.css +++ b/styles/lichess/catppuccin.user.css @@ -328,17 +328,17 @@ } } .is2d .queen { - #piece(@f, @s) { + &.black { @svg: escape( - '' + '' ); background-image: url("data:image/svg+xml,@{svg}") !important; } - &.black { - #piece(@base, @text); - } &.white { - #piece(@text, @base); + @svg: escape( + '' + ); + background-image: url("data:image/svg+xml,@{svg}") !important; } }