mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
22 lines
379 B
SCSS
22 lines
379 B
SCSS
|
|
.editor-toolbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
background-color: var(--joplin-background-color3);
|
|
padding: var(--joplin-toolbar-padding);
|
|
padding-right: var(--joplin-main-padding);
|
|
|
|
> .group {
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
min-width: 0;
|
|
|
|
&.-right {
|
|
flex: 1;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
}
|