From 6dad5f2e639c4234ec25f23a13130ae02884bf53 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 7 Nov 2022 13:26:26 +0100 Subject: [PATCH] Fix stylelint Signed-off-by: Marcel Klehr --- src/components/FaceCover.vue | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/src/components/FaceCover.vue b/src/components/FaceCover.vue index 0d7339342..a88a2d400 100644 --- a/src/components/FaceCover.vue +++ b/src/components/FaceCover.vue @@ -164,14 +164,6 @@ export default { } } - &.face-cover--small { - .face-cover__crop-container { - width: 60px !important; - height: 60px !important; - --photos-face-width: 60px !important; - } - } - &:hover, &:focus { background: var(--color-background-hover); } @@ -204,14 +196,19 @@ export default { margin: 0; } } +} - &.face-cover--small { - * { - font-size: 15px !important; - } - .face-cover__details { - width: 60px !important; - } +.face-cover--small { + * { + font-size: 15px !important; + } + .face-cover__details { + width: 60px !important; + } + .face-cover__crop-container { + width: 60px !important; + height: 60px !important; + --photos-face-width: 60px !important; } }