Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web-admin/src/features/billing/plans/EnterprisePlan.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<style lang="postcss">
.contact-us-btn {
@apply text-sm font-medium text-primary-600 border border-primary-500 px-4 py-2 cursor-pointer bg-white rounded-none;
@apply text-sm font-medium text-primary-600 border border-primary-500 px-4 py-2 cursor-pointer rounded-none;
height: 36px;
}

Expand Down
1 change: 1 addition & 0 deletions web-common/src/components/forms/Switch.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
)}
aria-label={label}
>
<!-- TODO: Revisit the bg-white case. There is not good replacement right and background doesnt look bad on dark mode. -->
<SwitchPrimitive.Thumb
class={cn(
"pointer-events-none block h-4 w-4 rounded-full bg-white shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<DropdownMenu.Trigger
class="flex flex-row items-center gap-x-2 h-9 px-4 border rounded-[2px] shadow-xs text-sm font-medium cursor-pointer {hasActiveFilters
? 'bg-surface-hover border-border text-fg-accent'
: 'bg-white border-border text-fg-primary hover:bg-surface-hover'}"
: 'border-border text-fg-primary hover:bg-surface-hover'}"
aria-label="Filter options"
>
<FilterOutlined size="16" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<div class="flex flex-col items-center justify-center h-full gap-3 p-4">
<div class="w-full max-w-md flex flex-col gap-3">
<textarea
class="w-full px-3 py-2 text-sm border rounded-md border-gray-300 focus:outline-none focus:ring-1 focus:ring-primary-500 focus:border-primary-500 resize-none bg-white text-fg-primary placeholder:text-fg-muted"
class="w-full px-3 py-2 text-sm border rounded-md border-gray-300 focus:outline-none focus:ring-1 focus:ring-primary-500 focus:border-primary-500 resize-none bg-input text-fg-primary placeholder:text-fg-muted"
rows="3"
placeholder={m.canvas_describe_chart_prompt()}
bind:value={prompt}
Expand Down
Loading