diff --git a/app/soapbox/components/ui/banner/banner.tsx b/app/soapbox/components/ui/banner/banner.tsx index 3acbbcf09..527509310 100644 --- a/app/soapbox/components/ui/banner/banner.tsx +++ b/app/soapbox/components/ui/banner/banner.tsx @@ -14,7 +14,7 @@ const Banner: React.FC = ({ theme, children, className }) => { data-testid='banner' className={classNames('fixed bottom-0 left-0 right-0 py-8 z-50', { 'backdrop-blur bg-primary-900/80': theme === 'frosted', - 'bg-white dark:bg-slate-800 text-black dark:text-white shadow-2xl dark:shadow-inset': theme === 'opaque', + 'bg-white dark:bg-slate-800 text-black dark:text-white shadow-3xl dark:shadow-inset': theme === 'opaque', }, className)} >
diff --git a/tailwind.config.js b/tailwind.config.js index 45644a143..036c479ba 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -11,6 +11,9 @@ module.exports = { xl: '1280px', }, extend: { + boxShadow: { + '3xl': '0 25px 75px -15px rgba(0, 0, 0, 0.25)', + }, fontSize: { base: '0.9375rem', },