mirror of
https://github.com/zadam/trilium.git
synced 2026-02-02 12:39:20 +01:00
40 lines
930 B
CSS
40 lines
930 B
CSS
.modal.tab-bar-modal {
|
|
.modal-dialog {
|
|
max-height: unset;
|
|
height: 95vh;
|
|
}
|
|
|
|
.tabs {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1em;
|
|
|
|
.tab-card {
|
|
background: var(--card-background-color);
|
|
border-radius: 1em;
|
|
|
|
header {
|
|
padding: 0.5em 1em;
|
|
border-bottom: 1px solid var(--main-border-color);
|
|
}
|
|
|
|
.tab-preview {
|
|
height: 180px;
|
|
overflow: hidden;
|
|
font-size: 0.5em;
|
|
|
|
&.type-text {
|
|
padding: 10px;
|
|
}
|
|
|
|
p { margin-bottom: 0.2em;}
|
|
h2 { font-size: 1.20em; }
|
|
h3 { font-size: 1.15em; }
|
|
h4 { font-size: 1.10em; }
|
|
h5 { font-size: 1.05em}
|
|
h6 { font-size: 1em; }
|
|
}
|
|
}
|
|
}
|
|
}
|