Skip to content

Commit

Permalink
fix: search hover
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigercrl committed Aug 9, 2024
1 parent 4e99f4d commit e727830
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/views/Cores.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,18 @@ function search(text?: string) {
height: 2rem;
margin: 1rem 0.5rem;
outline: none;
border: 1px solid var(--text-color-secondary);
border: 1.5px solid var(--text-color-secondary);
border-radius: 0.5rem;
padding: 0 8px;
transition: 0.3s ease-in-out;
}
.search:hover {
border-color: var(--text-color-primary);
}
.search:focus {
border-color: var(--color-primary);
}
.core {
Expand Down

0 comments on commit e727830

Please sign in to comment.