Added responsive horizontal padding to VersionSelector search bar

- **Search bar padding added**: px-4 sm:px-6 lg:px-8 to match App main container
- **Consistent centering**: Ensures search bar aligns identically with other pages
- **Responsive padding**: Same responsive behavior across breakpoints
- **Fixed centering shift**: Eliminates visual difference between pages

Version selector search bar centering now perfectly matches all other pages!
This commit is contained in:
Ryderjj89
2025-09-28 17:31:31 -04:00
parent 6ae55009e7
commit 8cb2aeef4b

View File

@@ -10,7 +10,7 @@ const VersionSelector: React.FC<VersionSelectorProps> = ({ onVersionSelect, onSe
return ( return (
<div> <div>
{/* Search Bar */} {/* Search Bar */}
<div className="flex justify-center mb-4"> <div className="flex justify-center mb-4 px-4 sm:px-6 lg:px-8">
<div className="w-full max-w-md relative"> <div className="w-full max-w-md relative">
<input <input
type="text" type="text"