mirror of
https://github.com/Xevion/dynamic-preauth.git
synced 2025-12-05 23:14:53 -06:00
Use connectionStatus enum properly, further improve mobile scaling for screen-sm basis
This commit is contained in:
@@ -61,7 +61,7 @@ function useSocket({ notify }: UseSocketProps): UseSocketResult {
|
|||||||
}[readyState] as Status;
|
}[readyState] as Status;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (readyState === WebSocket.CLOSED || readyState === WebSocket.CLOSING) {
|
if (connectionStatus === "closing" || connectionStatus === "closed") {
|
||||||
setId(null);
|
setId(null);
|
||||||
setDownloads(null);
|
setDownloads(null);
|
||||||
setExecutables(null);
|
setExecutables(null);
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import Demo from "@/components/Demo";
|
|||||||
<Base>
|
<Base>
|
||||||
<div class="w-screen min-h-screen flex flex-col items-center middle">
|
<div class="w-screen min-h-screen flex flex-col items-center middle">
|
||||||
<div
|
<div
|
||||||
class="noise-card rounded-sm relative z-20 border-zinc-700 md:border w-full max-w-[40rem] max-sm:h-full min-h-[618.5px] md:mt-16 shadow-lg"
|
class="noise-card rounded-sm relative z-20 border-zinc-700 md:border w-full max-w-screen-sm max-sm:min-h-screen max-sm:h-full min-h-[618.5px] sm:mb-8 sm:mt-16 shadow-lg"
|
||||||
style={{
|
style={{
|
||||||
backgroundPosition:
|
backgroundPosition:
|
||||||
Math.random() * 100 + "px " + Math.random() * 100 + "px",
|
Math.random() * 100 + "px " + Math.random() * 100 + "px",
|
||||||
|
|||||||
Reference in New Issue
Block a user