Move search form styling into a CSS component

This commit is contained in:
Oliver Davies 2019-04-28 18:39:41 +01:00
parent 786bb8afdf
commit 157f74948a
2 changed files with 6 additions and 5 deletions

View file

@ -2,10 +2,6 @@
@tailwind components;
.search-form {
> input:focus + svg {
@apply opacity-100
}
}
@import './components/search-form.css';
@tailwind utilities;

View file

@ -0,0 +1,5 @@
.search-form {
> input:focus + svg {
@apply opacity-100
}
}