mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 17:11:21 +00:00
refactor: simplify tailwind breakpoint indicator
This commit is contained in:
parent
43713f721a
commit
3dea32828f
1 changed files with 17 additions and 8 deletions
|
@ -1,16 +1,25 @@
|
|||
export function TailwindIndicator() {
|
||||
if (process.env.NODE_ENV === "production") return null;
|
||||
|
||||
const breakpoints = [
|
||||
{ name: "xs", css: "block sm:hidden" },
|
||||
{
|
||||
name: "sm",
|
||||
css: "hidden sm:block md:hidden lg:hidden xl:hidden 2xl:hidden",
|
||||
},
|
||||
{ name: "md", css: "hidden md:block lg:hidden xl:hidden 2xl:hidden" },
|
||||
{ name: "lg", css: "hidden lg:block xl:hidden 2xl:hidden" },
|
||||
{ name: "xl", css: "hidden xl:block 2xl:hidden" },
|
||||
{ name: "2xl", css: "hidden 2xl:block" },
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="fixed bottom-1 left-1 z-50 flex h-6 w-6 items-center justify-center rounded-full bg-gray-800 p-3 font-mono text-xs text-white">
|
||||
<div className="block sm:hidden">xs</div>
|
||||
<div className="hidden sm:block md:hidden lg:hidden xl:hidden 2xl:hidden">
|
||||
sm
|
||||
</div>
|
||||
<div className="hidden md:block lg:hidden xl:hidden 2xl:hidden">md</div>
|
||||
<div className="hidden lg:block xl:hidden 2xl:hidden">lg</div>
|
||||
<div className="hidden xl:block 2xl:hidden">xl</div>
|
||||
<div className="hidden 2xl:block">2xl</div>
|
||||
{breakpoints.map((breakpoint) => (
|
||||
<div key={breakpoint.name} className={breakpoint.css}>
|
||||
{breakpoint.name}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue