diff --git a/pkgs/clan-app/ui/src/components/Select/Select.module.css b/pkgs/clan-app/ui/src/components/Select/Select.module.css index bff926029..986122bd4 100644 --- a/pkgs/clan-app/ui/src/components/Select/Select.module.css +++ b/pkgs/clan-app/ui/src/components/Select/Select.module.css @@ -11,6 +11,10 @@ @apply outline outline-1 outline-inv-2 } + &[data-loading] { + @apply cursor-wait; + } + &:hover { @apply bg-def-2; @@ -38,6 +42,9 @@ &[data-disabled] { @apply cursor-not-allowed; } + &[data-loading] { + @apply bg-inherit; + } } .options_content { diff --git a/pkgs/clan-app/ui/src/components/Select/Select.stories.tsx b/pkgs/clan-app/ui/src/components/Select/Select.stories.tsx index 3890d998b..38baef30b 100644 --- a/pkgs/clan-app/ui/src/components/Select/Select.stories.tsx +++ b/pkgs/clan-app/ui/src/components/Select/Select.stories.tsx @@ -47,25 +47,28 @@ export const Default: Story = { placeholder: "Select your pet", }, }; - -// -// {(field, input) => ( -//