Skip to content

Commit

Permalink
fix slider shrink
Browse files Browse the repository at this point in the history
  • Loading branch information
LoV432 committed Jan 5, 2024
1 parent 7e5d4c2 commit 297c9b1
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function ConnectionLogsListModal({
const [days, setDays] = useState(1);
return (
<dialog ref={connectionLogsListModalRef} className="modal">
<div className="modal-box flex h-3/4 flex-col bg-zinc-900">
<div className="modal-box relative h-3/4 bg-zinc-900">
<p className="pb-5 text-lg font-bold">Connection Logs</p>
<p className="pb-5">Number of days to show: {days}</p>
<input
Expand Down Expand Up @@ -113,13 +113,15 @@ function EasterGif() {
return (
<>
{showEaster ? (
<Image
src={'/easter.gif'}
width={350}
height={350}
alt={'easter'}
className="mx-auto mt-auto"
></Image>
<div className="flex place-content-center">
<Image
src={'/easter.gif'}
width={350}
height={350}
alt={'easter'}
className="absolute bottom-0"
></Image>
</div>
) : null}
</>
);
Expand Down

0 comments on commit 297c9b1

Please sign in to comment.