diff options
author | Eric Bailey <git@esb.lol> | 2024-05-16 15:19:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 15:19:35 -0500 |
commit | 3a8baba129e609538e16e849d7cd7e3c2149ebca (patch) | |
tree | 126ef6d549b1bff7e488218a6b78460bf7082f34 /src/components | |
parent | 72550df0e2c94bd17b86215d95ec1b7eb76fe30f (diff) | |
download | voidsky-3a8baba129e609538e16e849d7cd7e3c2149ebca.tar.zst |
[🐴] Tweak header styles (#4053)
* Tweak desktop header styles * Tweak mobile * Bump icon size * Remove unused else
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Button.tsx b/src/components/Button.tsx index dc319eb5c..a008c8605 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -292,7 +292,7 @@ export function Button({ baseStyles.push({height: 50, width: 50}) } } else if (size === 'small') { - baseStyles.push({height: 40, width: 40}) + baseStyles.push({height: 34, width: 34}) } else if (size === 'tiny') { baseStyles.push({height: 20, width: 20}) } |