All checks were successful
continuous-integration/drone/push Build is passing
30 lines
556 B
CSS
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;
|
|
}
|