fix: restore text selection color via tailwind utilities

Former-commit-id: 7926a3fe3d46f27bdc818de4cbb351155a9e3093
This commit is contained in:
2026-05-07 12:48:40 +02:00
parent b393bba073
commit f708f4c736
2 changed files with 1 additions and 6 deletions

View File

@@ -169,7 +169,7 @@ export default async function Layout(props: {
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link rel="preconnect" href="https://img.infra.mintel.me" />
</head>
<body className="flex flex-col min-h-screen font-sans antialiased overflow-x-hidden">
<body className="flex flex-col min-h-screen font-sans antialiased overflow-x-hidden selection:bg-primary/90 selection:text-white">
<NextIntlClientProvider messages={clientMessages} locale={safeLocale}>
<SkipLink />
<Header navLinks={navLinks} />

View File

@@ -16,11 +16,6 @@
display: none; /* Chrome, Safari and Opera */
}
}
/* Global Selection Color (E-TIB Orange) */
::selection {
background-color: #FE7B00 !important;
color: #ffffff !important;
}
/* Base Styles */
@layer base {