Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions my-app/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ html {
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

body{
background-color: #0d1026
}

@tailwind components;
@tailwind utilities;

7 changes: 5 additions & 2 deletions my-app/src/pages/Events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ const EventSilder = ({ images, className }) => {
return (
<Slider {...settings} className={className}>
{images.map((img, index) => (
<div key={index} className="cursor-pointer">
<img className="rounded-lg" src={img} alt={img} />
<div key={index} className="cursor-pointer max-h-[250px] min-h-[250px] overflow-hidden flex justify-center">
<div className="">
<img className="m-auto h-[250px]" src={img} alt={img} />
</div>

</div>
))}
</Slider>
Expand Down