diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-14 16:30:47 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-14 16:30:47 -0700 |
| commit | 458561f5934d49e6785226f6ae446093804393e2 (patch) | |
| tree | 8c481ca1fd0bcb6de8785750f6483ca37f7e8d81 /site | |
| parent | 5ec509bfcacca36afdcd7d9c7e9a5da0ebc22778 (diff) | |
fix: rasis image sizing ratio
Diffstat (limited to 'site')
| -rw-r--r-- | site/src/components/TitleBar.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/site/src/components/TitleBar.tsx b/site/src/components/TitleBar.tsx index 7f9f6ac..43976c1 100644 --- a/site/src/components/TitleBar.tsx +++ b/site/src/components/TitleBar.tsx @@ -47,12 +47,12 @@ const TitleBar: React.FC = () => { <div className="bg-gray-900 border-b border-gray-800 py-4 px-6"> <div className="max-w-[800px] mx-auto"> <div className="flex flex-col sm:flex-row justify-between items-center"> - <div className="flex items-center space-x-3 mb-3 sm:mb-0"> - <img - src="/rasis.webp" - alt="573 Updates Logo" - className="w-8 h-8" - /> + <div className="flex items-center space-x-3 mb-3 sm:mb-0"> + <img + src="/rasis.webp" + alt="573 Updates Logo" + className="w-8 h-8 object-contain" + /> <div className="w-8 h-8 bg-red-700 rounded-md flex items-center justify-center"> <span className="text-white font-bold">573</span> </div> |
