Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,13 @@ hr,
}

#cacheInput {
transition: border-color 0.2s ease;
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dark-mode #cacheInput {
background-color: #404040 !important;
border-color: #505050 !important;
color: #ffffff !important;
}

#cacheInput:focus {
Expand Down