diff --git a/src/page-components/device/DeviceList.module.css b/src/page-components/device/DeviceList.module.css index a42d79e..b4d90c2 100644 --- a/src/page-components/device/DeviceList.module.css +++ b/src/page-components/device/DeviceList.module.css @@ -41,11 +41,5 @@ background-color: color-mix(in oklch, var(--color-on-surface) 8%, transparent); } } - .empty_prompt { - padding-block: calc(var(--spacing) * 1); - text-align: center; - font-size: calc(var(--font-size) * 0.8); - color: var(--color-on-surface-variant); - } } } diff --git a/src/page-components/device/DeviceList.tsx b/src/page-components/device/DeviceList.tsx index cbe9897..7f1af2a 100644 --- a/src/page-components/device/DeviceList.tsx +++ b/src/page-components/device/DeviceList.tsx @@ -10,7 +10,7 @@ const AvailableDevices: FC = () => { return (
- {devices.length === 0 &&
No available devices.
} + {devices.length === 0 &&
No available devices.
} {devices.map((device, index) => (
{device.represent}