fix: deemix icon on slim sidebar

This commit is contained in:
Roberto Tonino 2021-01-31 22:35:29 +01:00
parent 337ca3c04e
commit a46c24cda0
2 changed files with 11 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
<template>
<aside
id="sidebar"
:class="{ 'w-12': isSlim }"
:class="{ 'slim-sidebar w-12': isSlim }"
:style="{ minWidth: isSlim ? null : '14rem' }"
aria-label="sidebar"
class="top-0 left-0 flex flex-col h-screen bg-panels-bg text-foreground"
@ -70,6 +70,14 @@
display: grid;
place-content: center;
.slim-sidebar & {
margin: 0.5rem 0;
&::v-deep svg {
height: 30px;
}
}
&::v-deep svg {
height: 75px;
}