glorious styling

Signed-off-by: FTCHD <144691102+FTCHD@users.noreply.github.com>
This commit is contained in:
FTCHD
2025-09-12 19:18:59 +02:00
parent d083379b25
commit 3eb6ac6d40
20 changed files with 31 additions and 9 deletions
+12 -1
View File
@@ -229,6 +229,7 @@ export default function RemoteCreateDrawer({
startContent={<RefreshCcwIcon className="w-3 h-3" />}
onPress={() => setConfig({})}
data-focus-visible="false"
className="gap-2"
>
Reset
</Button>
@@ -266,7 +267,17 @@ export default function RemoteCreateDrawer({
isRequired={true}
>
{backends.map((backend) => (
<SelectItem key={backend.Name}>
<SelectItem
className="h-12"
key={backend.Name}
startContent={
<img
src={`/icons/${backend.Prefix}.png`}
className="object-contain w-8 h-8"
alt={backend.Name}
/>
}
>
{backend.Description.includes('Compliant')
? `${backend.Description.split('Compliant')[0]} Compliant`
: backend.Description || backend.Name}