mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
18 lines
333 B
SCSS
18 lines
333 B
SCSS
|
|
.setting-tab-panel {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
min-height: 0;
|
|
|
|
&.-hidden {
|
|
display: none;
|
|
}
|
|
|
|
&:focus-visible {
|
|
// Use a border rather than an outline -- an outline would be shown outside of the screen
|
|
// and thus invisible.
|
|
border: 1px solid var(--joplin-focus-outline-color);
|
|
outline: none;
|
|
}
|
|
} |