1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2026-01-05 22:42:58 +00:00

refactor(ui): standardize the border radius (#1920)

Impact:
- Increase the border radius of inline code and `<kbd>` tags
- Variable `$base-radius` renamed to `$radius-lg`
This commit is contained in:
Cotes Chung
2024-08-25 18:17:38 +08:00
committed by GitHub
parent 5f4dab1745
commit 31e19c6d0f
7 changed files with 12 additions and 11 deletions

View File

@@ -173,12 +173,12 @@ header {
}
&:first-child {
border-radius: $base-radius 0 0 $base-radius;
border-radius: $radius-lg 0 0 $radius-lg;
left: 0.5px;
}
&:last-child {
border-radius: 0 $base-radius $base-radius 0;
border-radius: 0 $radius-lg $radius-lg 0;
right: 0.5px;
}
}