This commit is contained in:
Henry Jameson 2022-10-09 23:02:42 +03:00
parent 05640e4cc1
commit 2469415809
1 changed files with 55 additions and 56 deletions

View File

@ -121,6 +121,30 @@
} }
} }
input, textarea {
flex: 1 0 auto;
}
.hidden-overlay {
opacity: 0;
pointer-events: none;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
overflow: hidden;
/* DEBUG STUFF */
color: red;
/* set opacity to non-zero to see the overlay */
.caret {
width: 0;
margin-right: calc(-1ch - 1px);
border: 1px solid red;
}
}
}
.autocomplete { .autocomplete {
&-panel { &-panel {
position: absolute; position: absolute;
@ -176,29 +200,4 @@
} }
} }
} }
input, textarea {
flex: 1 0 auto;
}
.hidden-overlay {
opacity: 0;
pointer-events: none;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
overflow: hidden;
/* DEBUG STUFF */
color: red;
/* set opacity to non-zero to see the overlay */
.caret {
width: 0;
margin-right: calc(-1ch - 1px);
border: 1px solid red;
}
}
}
</style> </style>