Skip to content
Open
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
2 changes: 1 addition & 1 deletion apps/frontend/src/app/(app)/(site)/billing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const metadata: Metadata = {
};
export default async function Page() {
return (
<div className="bg-newBgColorInner flex-1 flex-col flex p-[20px] gap-[12px]">
<div className="bg-newBgColorInner flex-1 flex-col flex p-[12px] md:p-[20px] gap-[8px] md:gap-[12px]">
<BillingComponent />
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default async function IntegrationLayout({

return (
<div className="bg-newBgColorInner p-[20px] flex flex-col transition-all flex-1">
<div className="text-6xl text-center mt-[50px]">
<div className="text-3xl md:text-6xl text-center mt-[50px]">
{t('adding_channel_redirecting_you', 'Adding channel, Redirecting You')}
{children}
</div>
Expand Down
8 changes: 4 additions & 4 deletions apps/frontend/src/app/(app)/auth/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export default async function AuthLayout({
const t = await getT();

return (
<div className="bg-[#0E0E0E] flex flex-1 p-[12px] gap-[12px] min-h-screen w-screen text-white">
<div className="bg-[#0E0E0E] flex flex-1 p-[12px] gap-[12px] min-h-screen w-full text-white">
{/*<style>{`html, body {overflow-x: hidden;}`}</style>*/}
<ReturnUrlComponent />
<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]">
<div className="w-full max-w-[440px] mx-auto justify-center gap-[20px] h-full flex flex-col text-white">
<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">
<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">
<LogoTextComponent />
<div className="flex">{children}</div>
<div className="flex flex-col flex-1">{children}</div>
</div>
</div>
<div className="text-[36px] flex-1 pt-[88px] hidden lg:flex flex-col items-center">
Expand Down
6 changes: 3 additions & 3 deletions apps/frontend/src/app/(app)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ export default async function AppLayout({ children }: { children: ReactNode }) {
transloadit={
process.env.TRANSLOADIT_AUTH && process.env.TRANSLOADIT_TEMPLATE
? [
process.env.TRANSLOADIT_AUTH!,
process.env.TRANSLOADIT_TEMPLATE!,
]
process.env.TRANSLOADIT_AUTH!,
process.env.TRANSLOADIT_TEMPLATE!,
]
: []
}
>
Expand Down
Loading