Created
April 15, 2024 00:48
-
-
Save dan-myles/933182d6e203d1f4ccbf89c392a6bcb5 to your computer and use it in GitHub Desktop.
Easy to use, nice looking screen size indicator :P
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use client" | |
export function ScreenIndicator() { | |
if (process.env.NODE_ENV === "production") return null | |
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> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment