mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
482bd7fb9c
[web] Bootstrap 5 form elements GitOrigin-RevId: 7d031bed07007d0aa00a43f06d25bfb7384dee87
20 lines
332 B
SCSS
20 lines
332 B
SCSS
.input-suggestions {
|
|
position: relative;
|
|
}
|
|
|
|
.input-suggestions-main {
|
|
position: absolute;
|
|
top: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.input-suggestions-shadow {
|
|
background-color: $input-bg;
|
|
color: var(--content-placeholder);
|
|
|
|
& + .input-suggestions-main {
|
|
&:focus {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|