샤드시옌으로 쫙 수정

This commit is contained in:
leeheejin
2025-10-29 17:53:03 +09:00
parent 2517261db9
commit 437e0c331c
87 changed files with 1493 additions and 1491 deletions

View File

@@ -122,9 +122,9 @@ export function ResolutionSelector({ value, onChange, currentScreenResolution }:
return (
<div className="flex items-center gap-2">
<Monitor className="h-4 w-4 text-gray-500" />
<Monitor className="h-4 w-4 text-muted-foreground" />
<Select value={value} onValueChange={(v) => onChange(v as Resolution)}>
<SelectTrigger className={`w-[180px] ${isTooLarge ? "border-orange-500" : ""}`}>
<SelectTrigger className={`w-[180px] ${isTooLarge ? "border-warning" : ""}`}>
<SelectValue />
</SelectTrigger>
<SelectContent className="z-[99999]">
@@ -133,31 +133,31 @@ export function ResolutionSelector({ value, onChange, currentScreenResolution }:
<SelectItem value="hd">
<div className="flex items-center gap-2">
<span>HD</span>
<span className="text-xs text-gray-500">1280x720</span>
<span className="text-xs text-muted-foreground">1280x720</span>
</div>
</SelectItem>
<SelectItem value="fhd">
<div className="flex items-center gap-2">
<span>Full HD</span>
<span className="text-xs text-gray-500">1920x1080</span>
<span className="text-xs text-muted-foreground">1920x1080</span>
</div>
</SelectItem>
<SelectItem value="qhd">
<div className="flex items-center gap-2">
<span>QHD</span>
<span className="text-xs text-gray-500">2560x1440</span>
<span className="text-xs text-muted-foreground">2560x1440</span>
</div>
</SelectItem>
<SelectItem value="uhd">
<div className="flex items-center gap-2">
<span>4K UHD</span>
<span className="text-xs text-gray-500">3840x2160</span>
<span className="text-xs text-muted-foreground">3840x2160</span>
</div>
</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
{isTooLarge && <span className="text-xs text-orange-600"> </span>}
{isTooLarge && <span className="text-xs text-warning"> </span>}
</div>
);
}