From 675a255e24f8e6ccdf44cc8008e52c12726efa11 Mon Sep 17 00:00:00 2001 From: Christian Willner <34183939+vaeng@users.noreply.github.com> Date: Fri, 29 Nov 2024 09:55:02 +0100 Subject: [PATCH] fix: change face sorting direction --- app/css/components/faces.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/css/components/faces.css b/app/css/components/faces.css index 122870101f..48c629e0b4 100644 --- a/app/css/components/faces.css +++ b/app/css/components/faces.css @@ -13,6 +13,10 @@ height: 32px; width: 32px; } + /* leftmose face on top */ + &:nth-child(1) { z-index: 3; } + &:nth-child(2) { z-index: 2; } + &:nth-child(3) { z-index: 1; } } & .counter { @@ -38,6 +42,10 @@ height: 32px; width: 32px; } + /* leftmose face on top */ + &:nth-child(1) { z-index: 3; } + &:nth-child(2) { z-index: 2; } + &:nth-child(3) { z-index: 1; } } & .overflow-counter {