Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

legoo #97

Merged
merged 3 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

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: 2 additions & 2 deletions src/components/Background.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Background = () => {
blurDataURL={`data:image/svg+xml;base64, ${toBase64(
shimmer(1024, 1024)
)}`}
className="pointer-events-none fixed left-0 top-0 -z-50 hidden h-full w-full select-none object-cover object-top lg:block"
className="pointer-events-none fixed left-0 top-0 -z-50 hidden h-full w-full w-screen select-none overflow-hidden object-cover object-top lg:block"
/>
<Image
src={BackgroundMobile}
Expand All @@ -27,7 +27,7 @@ const Background = () => {
blurDataURL={`data:image/svg+xml;base64, ${toBase64(
shimmer(1024, 1024)
)}`}
className="pointer-events-none fixed left-0 top-0 -z-50 block h-full w-full select-none object-cover lg:hidden"
className="pointer-events-none fixed left-0 top-0 -z-50 block h-full w-full w-screen select-none overflow-hidden object-cover lg:hidden"
/>
</>
);
Expand Down
8 changes: 3 additions & 5 deletions src/pages/pdpa.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ export async function getStaticProps() {

const PrivacyPolicy = ({ source }: { source: any }) => {
return (
<div className="h-full w-full">
<article className="prose w-full list-disc whitespace-pre-line bg-purple-400/75 p-14 leading-loose backdrop-blur-lg">
<div className="mx-auto w-full max-w-lg px-2">{source}</div>
</article>
</div>
<article className="proset flex list-disc overflow-hidden whitespace-pre-line bg-purple-400/75 p-14 leading-loose text-white backdrop-blur-lg">
<div className="mx-auto max-w-lg px-2">{source}</div>
</article>
);
};

Expand Down
8 changes: 3 additions & 5 deletions src/pages/privacy-policy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ export async function getStaticProps() {

const PrivacyPolicy = ({ source }: { source: any }) => {
return (
<div className="h-full w-full">
<article className="prose w-full list-disc whitespace-pre-line bg-purple-400/75 p-14 leading-loose backdrop-blur-lg">
<div className="mx-auto w-full max-w-lg px-2">{source}</div>
</article>
</div>
<article className="prose flex w-full list-disc whitespace-pre-line bg-purple-400/75 p-14 leading-loose text-white backdrop-blur-lg">
<div className="mx-auto w-full max-w-lg px-2">{source}</div>
</article>
);
};

Expand Down
2 changes: 1 addition & 1 deletion src/pages/scan.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Scan() {
try {
// check-in qr code
if (token === 'rpkm66-check-in') {
const { status } = await httpPost('/checkin/', {});
const { status } = await httpPost('/checkin', {});
if (status === 200) {
toast?.setToast('success', 'Check-in successfully');
} else {
Expand Down
8 changes: 3 additions & 5 deletions src/pages/terms-conditions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ export async function getStaticProps() {

const PrivacyPolicy = ({ source }: { source: any }) => {
return (
<div className="h-full w-full">
<article className="prose w-full list-disc whitespace-pre-line bg-purple-400/75 p-14 leading-loose backdrop-blur-lg">
<div className="mx-auto w-full max-w-lg px-2">{source}</div>
</article>
</div>
<article className="prose flex w-full list-disc whitespace-pre-line bg-purple-400/75 p-14 leading-loose text-white backdrop-blur-lg">
<div className="mx-auto w-full max-w-lg px-2">{source}</div>
</article>
);
};

Expand Down