Totally hide input above its container

This commit is contained in:
Jean-Baptiste Bellet
2023-08-16 15:04:07 +02:00
parent 47115a0daf
commit 06fccd8618

View File

@@ -159,7 +159,10 @@
}
> input {
background-color: $lighter-grey;
// Totally hide the input from its container
background-color: transparent;
border: none;
width: calc(100% - 30px); // 30px is the width of the search icon + padding
}
&:before {