28 lines
410 B
SCSS
Executable File
28 lines
410 B
SCSS
Executable File
.tiptap-input {
|
|
display: block;
|
|
width: 100%;
|
|
height: 2rem;
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
padding: 0.375rem 0.75rem;
|
|
border-radius: 0.375rem;
|
|
background: none;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
&-clamp {
|
|
min-width: 12rem;
|
|
padding-right: 0;
|
|
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
&:focus {
|
|
text-overflow: clip;
|
|
overflow: visible;
|
|
}
|
|
}
|
|
}
|