fix: sidebar dimension changing when opening download bar; workflow added settings.json to share with VS Code users

This commit is contained in:
Roberto Tonino 2020-11-13 22:36:14 +01:00
parent 90a4ec829b
commit cfb7af5a21
3 changed files with 1020 additions and 1012 deletions

11
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"search.exclude": {
"**/*.map": true,
"public/css": true,
"public/js": true
},
"path-intellisense.mappings": {
"@": "${workspaceRoot}/src",
"@components": "${workspaceRoot}/src/js/components"
}
}

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,8 @@
<aside <aside
id="sidebar" id="sidebar"
class="top-0 left-0 flex flex-col h-screen bg-panels-bg text-foreground" class="top-0 left-0 flex flex-col h-screen bg-panels-bg text-foreground"
:class="{ 'w-12': isSlim, 'w-64': !isSlim }" :class="{ 'w-12': isSlim }"
:style="{ minWidth: isSlim ? null : '14rem' }"
role="navigation" role="navigation"
aria-label="sidebar" aria-label="sidebar"
> >