added button hover

This commit is contained in:
keyboardreamer 2024-01-04 06:49:20 +08:00
parent e9ce78ff9e
commit 3d27adef68
2 changed files with 6 additions and 2 deletions

View file

@ -4,7 +4,7 @@
"semi": true,
"tabWidth": 4,
"embeddedLanguageFormatting": "auto",
"endOfLine": "crlf",
"endOfLine": "lf",
"printWidth": 120,
"vueIndentScriptAndStyle": false,
"quoteProps": "as-needed",

View file

@ -189,7 +189,7 @@ b {
}
.btn {
@apply py-2 lt-md:px-2 md:px-4 rounded cursor-pointer inline-block;
@apply py-2 lt-md:px-2 md:px-4 rounded cursor-pointer inline-block hover:bg-gray-500 hover:text-white;
}
.reset {
@ -221,6 +221,10 @@ b {
@apply text-gray-400 bg-dark-400;
}
.dark .btn {
@apply hover:bg-dark-300;
}
.input {
@apply px-2.5 rounded-md;
}