Skip to content

Commit 9e58632

Browse files
Mobile CSS
1 parent bec93f9 commit 9e58632

30 files changed

+1009
-537
lines changed

apps/frontend/src/app/(app)/(site)/billing/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const metadata: Metadata = {
88
};
99
export default async function Page() {
1010
return (
11-
<div className="bg-newBgColorInner flex-1 flex-col flex p-[20px] gap-[12px]">
11+
<div className="bg-newBgColorInner flex-1 flex-col flex p-[12px] md:p-[20px] gap-[8px] md:gap-[12px]">
1212
<BillingComponent />
1313
</div>
1414
);

apps/frontend/src/app/(app)/(site)/integrations/social/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default async function IntegrationLayout({
99

1010
return (
1111
<div className="bg-newBgColorInner p-[20px] flex flex-col transition-all flex-1">
12-
<div className="text-6xl text-center mt-[50px]">
12+
<div className="text-3xl md:text-6xl text-center mt-[50px]">
1313
{t('adding_channel_redirecting_you', 'Adding channel, Redirecting You')}
1414
{children}
1515
</div>

apps/frontend/src/app/(app)/auth/layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ export default async function AuthLayout({
1515
const t = await getT();
1616

1717
return (
18-
<div className="bg-[#0E0E0E] flex flex-1 p-[12px] gap-[12px] min-h-screen w-screen text-white">
18+
<div className="bg-[#0E0E0E] flex flex-1 p-[12px] gap-[12px] min-h-screen w-full text-white">
1919
{/*<style>{`html, body {overflow-x: hidden;}`}</style>*/}
2020
<ReturnUrlComponent />
21-
<div className="flex flex-col py-[40px] px-[20px] flex-1 lg:w-[600px] lg:flex-none rounded-[12px] text-white p-[12px] bg-[#1A1919]">
22-
<div className="w-full max-w-[440px] mx-auto justify-center gap-[20px] h-full flex flex-col text-white">
21+
<div className="flex flex-col py-[40px] px-[20px] md:px-[40px] flex-1 lg:w-[600px] lg:flex-none rounded-[12px] text-white bg-[#1A1919] overflow-y-auto">
22+
<div className="w-full max-w-[440px] mx-auto justify-center gap-[20px] h-fit min-h-full flex flex-col text-white py-4">
2323
<LogoTextComponent />
24-
<div className="flex">{children}</div>
24+
<div className="flex flex-col flex-1">{children}</div>
2525
</div>
2626
</div>
2727
<div className="text-[36px] flex-1 pt-[88px] hidden lg:flex flex-col items-center">

apps/frontend/src/app/(app)/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ export default async function AppLayout({ children }: { children: ReactNode }) {
7373
transloadit={
7474
process.env.TRANSLOADIT_AUTH && process.env.TRANSLOADIT_TEMPLATE
7575
? [
76-
process.env.TRANSLOADIT_AUTH!,
77-
process.env.TRANSLOADIT_TEMPLATE!,
78-
]
76+
process.env.TRANSLOADIT_AUTH!,
77+
process.env.TRANSLOADIT_TEMPLATE!,
78+
]
7979
: []
8080
}
8181
>

0 commit comments

Comments
 (0)