This commit is contained in:
vinceliuice
2024-07-31 22:54:27 +08:00
parent f75b986e9a
commit 9188989210
2 changed files with 8 additions and 6 deletions

View File

@@ -692,13 +692,15 @@ uninstall() {
}
uninstall_theme() {
for theme in "${themes[@]}"; do
for color in "${colors[@]}"; do
for size in "${sizes[@]}"; do
for theme in "${THEME_VARIANTS[@]}"; do
for color in "${COLOR_VARIANTS[@]}"; do
for size in "${SIZE_VARIANTS[@]}"; do
for scheme in "${SCHEME_VARIANTS[@]}"; do
uninstall "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme"
done
done
done
done
}
if [[ "$uninstall" == 'true' ]]; then

View File

@@ -3733,7 +3733,7 @@ list {
background-clip: padding-box;
> row {
padding: $space-size;
padding: 2px;
background-clip: padding-box;
}
@@ -4619,7 +4619,7 @@ separator.sidebar {
> row {
min-height: $small-size;
padding: $space-size;
padding: $space-size / 2;
border-radius: $corner-radius;
margin: $space-size / 4 $space-size;
}