Meta Post - Common CSS Hacks

Just a small change to align the tab container header with the note header:

Before:
Bildschirmfoto 2021-01-12 um 21.52.10

After:
Bildschirmfoto 2021-01-12 um 21.58.39

CSS:

.workspace-tab-header-container {
    height: 36px;
    padding-top: 8px;
}

.workspace-split.mod-left-split > .workspace-leaf-resize-handle, .workspace-split.mod-right-split > .workspace-leaf-resize-handle {
    height: calc(100% - 36px);
}
4 Likes