Move and rename stylesheet
This commit is contained in:
parent
1023cf073d
commit
f8a0d8e904
4 changed files with 1 additions and 1 deletions
3
src/assets/css/components/links.css
Normal file
3
src/assets/css/components/links.css
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
a:hover {
|
||||
@apply underline
|
||||
}
|
||||
5
src/assets/css/components/search-form.css
Normal file
5
src/assets/css/components/search-form.css
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
.search-form {
|
||||
> input:focus + svg {
|
||||
@apply opacity-100
|
||||
}
|
||||
}
|
||||
8
src/assets/css/tailwind.css
Normal file
8
src/assets/css/tailwind.css
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
@tailwind base;
|
||||
|
||||
@tailwind components;
|
||||
|
||||
@import './components/links.css';
|
||||
@import './components/search-form.css';
|
||||
|
||||
@tailwind utilities;
|
||||
Reference in a new issue