19 lines
336 B
SCSS
19 lines
336 B
SCSS
|
|
.tiptap-button-group {
|
||
|
|
align-items: center;
|
||
|
|
display: flex;
|
||
|
|
gap: 0.125rem;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tiptap-button-group {
|
||
|
|
&[data-orientation="vertical"],
|
||
|
|
[data-orientation="vertical"] {
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
&[data-orientation="horizontal"],
|
||
|
|
[data-orientation="horizontal"] {
|
||
|
|
flex-direction: row;
|
||
|
|
}
|
||
|
|
}
|