Skip to content

Commit 65bddd8

Browse files
committed
small style changes
1 parent 6dd826c commit 65bddd8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Components/Common/CitiesSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const CitiesSection = ({ title }: { title: string }) => {
3131
if (error) return;
3232

3333
return (
34-
<div className="rounded-md bg-accent/10 px-5 py-6">
34+
<div className="rounded-4xl bg-accent/10 px-5 py-6">
3535
<h5 className="mb-6 font-semibold text-2xl">{title}</h5>
3636
<div className="flex flex-wrap justify-between gap-4">
3737
<div className="w-full grid grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-4">

src/Components/Common/search/SearchBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const SearchBar = () => {
3838
placeholder="Search for a city, activity, or place"
3939
value={searchQuery || ""}
4040
onChange={(e) => setSearchQuery(e.target.value)}
41-
className="w-full mx-auto rounded-4xl shadow-lg bg-input border border-ring px-14 py-4 text-lg md:text-lg"
41+
className="w-full mx-auto rounded-4xl shadow-lg bg-background border border-ring px-14 py-4 text-lg md:text-lg"
4242
/>
4343
<Button
4444
type="submit"

src/Components/Header/Banner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import SearchBar from "../Common/search/SearchBar";
33

44
const Banner = () => (
55
<>
6-
<div className="bg-[url('/images/main-header.jpg')] bg-cover bg-center h-56 flex justify-center items-center rounded-lg overflow-hidden">
6+
<div className="bg-[url('/images/main-header.jpg')] bg-cover bg-center h-56 flex justify-center items-center rounded-xl overflow-hidden">
77
<h4 className="text-white text-center text-2xl sm:text-4xl w-full h-full flex items-center justify-center bg-foreground/20">
88
Plan your perfect day with ease!
99
</h4>

0 commit comments

Comments
 (0)