This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
site/src/css/components/search.css
Maxim Slipenko 798e1dad20
All checks were successful
continuous-integration/drone/push Build is passing
выносит поиск в отдельный блок
2022-05-19 10:05:29 +03:00

30 lines
556 B
CSS

.search {
@apply relative w-full md:w-[70vw] xl:w-[60vw];
}
.search__input {
@apply w-full px-6 py-2 text-4xl border-2 rounded-3xl focus:outline-none;
}
.search__input_opened {
@apply rounded-b-none;
}
.search__sugestions-list {
@apply absolute w-full py-2 text-2xl bg-white border-2 border-t-0 rounded-b-3xl;
}
.search__sugestion-item {
@apply relative px-6 py-2 hover:bg-slate-100;
}
.search__sugestion-item-link::after {
@apply absolute top-0 bottom-0 left-0 right-0;
content: "";
}
.search__sugestion-empty {
@apply px-6 py-2;
}