mirror of
https://github.com/mii443/obsidian-typst.git
synced 2025-08-22 16:15:34 +00:00
60 lines
786 B
CSS
60 lines
786 B
CSS
/* styles */
|
|
textarea {
|
|
width: 100%;
|
|
resize: vertical;
|
|
}
|
|
|
|
.setting-item:has(textarea),
|
|
.font-settings {
|
|
flex-direction: column;
|
|
gap: 0.5em;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.is-disabled {
|
|
display: none;
|
|
}
|
|
|
|
.add-fonts-div {
|
|
display: flex;
|
|
gap: 0.5em;
|
|
}
|
|
|
|
.font-input {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.font-tags-div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5em;
|
|
}
|
|
|
|
.font-tag {
|
|
background-color: var(--interactive-normal); /* #363636 */
|
|
border-radius: 20px;
|
|
padding: 0.5em 0.6em 0.5em 1em;
|
|
}
|
|
|
|
.tag-btn {
|
|
margin-left: 0.6em;
|
|
padding: 0.4em;
|
|
}
|
|
|
|
.font-tag-text {
|
|
font-size: var(--font-ui-small);
|
|
}
|
|
|
|
button,
|
|
.tag-btn {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tag-btn:hover {
|
|
color: var(--interactive-accent);
|
|
}
|
|
|
|
.typst-doc {
|
|
vertical-align: bottom;
|
|
}
|