Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
feat: add hide header option
Browse files Browse the repository at this point in the history
  • Loading branch information
kometenstaub committed Aug 11, 2022
1 parent cae8c54 commit 8022577
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
14 changes: 14 additions & 0 deletions esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,20 @@ settings:
max: 16
step: 1
format: px
-
id: display-view-header-title
title: Hide the view header title
description: Redundant because of the embedded title. Gives more spaces for buttons.
type: variable-select
default: initial
options:
-
label: Show header
value: initial
-
label: Hide header
value: none
*/
`

Expand Down
4 changes: 4 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.view-header-title {
display: var(--display-view-header-title, initial);
}

.page-header-button.titlebar-center {
position: absolute;
width: 100%;
Expand Down

0 comments on commit 8022577

Please sign in to comment.