Expand max width of WIP component on lg screens

This commit is contained in:
Xevion
2022-12-30 20:56:09 -06:00
parent f1f46ca8da
commit ac15e4b1a2

View File

@@ -3,7 +3,7 @@ import type {FunctionComponent} from "react";
const WorkInProgress: FunctionComponent = () => {
return <div className="w-full my-10 flex justify-center">
<div
className="bg-zinc-850 border border-zinc-700 rounded-md max-w-[23rem] sm:max-w-[25rem] mx-3 w-full p-5 flex flex-col items-center justify-center">
className="bg-zinc-850 border border-zinc-700 rounded-md max-w-[23rem] sm:max-w-[25rem] lg:max-w-[30rem] mx-3 w-full p-5 flex flex-col items-center justify-center">
<span className="bg-gradient-to-r from-orange-500 via-fuchsia-600 to-cyan-500 text-transparent font-semibold bg-clip-text text-3xl sm:text-4xl pb-2 text-center">
Work In Progress
</span>