Update SearchSuggestions.vue

This commit is contained in:
Dragos 2022-09-05 20:45:23 +03:00 committed by GitHub
parent 18b918483a
commit c36b3f9314
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 25 deletions

View File

@ -77,30 +77,6 @@ export default {
<style> <style>
.suggestions-container { .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)] bg-gray-300; @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)];
}
.dark .suggestions-container {
@apply bg-dark-400;
}
.auto .suggestions-container {
@apply @dark:bg-dark-400;
}
.suggestion-selected {
@apply bg-gray-200;
}
.dark .suggestion-selected {
@apply bg-dark-100;
}
.auto .suggestion-selected {
@apply @dark:bg-dark-100;
}
.suggestion {
@apply p-y-1;
} }
</style> </style>