Skip to content
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
2 changes: 1 addition & 1 deletion apps/mail/app/(full-width)/privacy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function PrivacyPolicy() {
<div className="relative flex min-h-screen w-full flex-col overflow-auto bg-white dark:bg-[#111111]">
<Navigation />
<div className="relative z-10 flex flex-grow flex-col">
<div className="absolute left-4 top-4 md:left-8 md:top-8">
<div className="absolute right-4 top-6 md:left-8 md:top-8 md:right-auto">
<a href="/">
<Button
variant="ghost"
Expand Down
2 changes: 1 addition & 1 deletion apps/mail/app/(full-width)/terms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function TermsOfService() {
<Navigation />
<div className="relative z-10 flex flex-grow flex-col">
{/* Back Button */}
<div className="absolute left-4 top-4 md:left-8 md:top-8">
<div className="absolute right-4 top-6 md:left-8 md:top-8 md:right-auto">
<a href="/">
<Button
variant="ghost"
Expand Down
2 changes: 1 addition & 1 deletion apps/mail/components/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function Navigation() {
return (
<>
{/* Desktop Navigation - Hidden on mobile */}
<header className="fixed z-50 hidden w-full items-center justify-center px-4 pt-6 md:flex">
<header className="fixed z-50 hidden w-full items-center justify-center px-4 pt-6 md:flex max-w-3xl translate-x-[-50%] left-[50%]">
<nav className="border-input/50 flex w-full max-w-3xl items-center justify-between gap-2 rounded-xl border-t bg-[#1E1E1E] p-2 px-4">
<div className="flex items-center gap-6">
<Link to="/" className="relative bottom-1 cursor-pointer">
Expand Down