0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-02-22 15:25:05 +01:00

fix(styling): use var(--border-radius) over hardcoded styling

This commit is contained in:
Micah Kepe 2026-02-13 11:12:09 -08:00
parent 28cfd9dc47
commit 670be300f1

View File

@ -194,8 +194,8 @@ watch([searchQuery, filteredFiles], async () => {
.repo-file-search-input-wrapper input {
padding-right: 32px !important;
border-right: 1px solid var(--color-input-border) !important;
border-top-right-radius: 0.28571429rem !important;
border-bottom-right-radius: 0.28571429rem !important;
border-top-right-radius: var(--border-radius) !important;
border-bottom-right-radius: var(--border-radius) !important;
}
.repo-file-search-input-wrapper input:focus {