Fix search suggestions on smaller screens.

This commit is contained in:
Kavin 2022-09-07 00:13:51 +05:30
parent d64db2e718
commit 2d53ab1f6e
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
2 changed files with 3 additions and 3 deletions

View file

@ -77,6 +77,8 @@ export default {
<style>
.suggestions-container {
@apply left-1/2 translate-x-[-50%] transform-gpu max-w-3xl w-full box-border p-y-1.25 z-10 lt-md:max-w-[calc(100%-0.5rem)];
@apply left-1/2 translate-x-[-50%] transform-gpu max-w-[600rem] w-full box-border p-[15rem] mb-[15rem] z-10 lt-md:max-w-[calc(100%-0.5rem)];
background: var(--efy_text2);
box-shadow: 0 0 20px var(--efy_text_trans);
}
</style>