You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-26 22:41:17 +02:00
18 lines
319 B
SCSS
18 lines
319 B
SCSS
|
|
.editor-status-indicator {
|
|
width: 0;
|
|
overflow: hidden;
|
|
|
|
&:has(> :focus-visible), &.-show {
|
|
width: unset;
|
|
overflow: visible;
|
|
}
|
|
|
|
> .button {
|
|
font-size: var(--joplin-font-size-small);
|
|
background-color: var(--joplin-background-color-active3);
|
|
color: var(--joplin-color);
|
|
border: none;
|
|
padding: 4px;
|
|
}
|
|
} |