Skip to content

Commit

Permalink
Login flow update and UI updated (gitbutlerapp#4716)
Browse files Browse the repository at this point in the history
* UI: Fix disabled `WelcomeAction` state

* update stories structure

* update UI components structure

* fix path to icons.json

* fix path to `timeAgo` functions

* added `LinkButton` component and updated login functions

* copy change

* remove `console.log`

* lint: formatting fixes

* remove `console.log` from the `Modal` story

* casing change

* remove duplicated folders (casing issue)
  • Loading branch information
PavelLaptev committed Aug 19, 2024
1 parent 776a66b commit daa285f
Show file tree
Hide file tree
Showing 136 changed files with 311 additions and 197 deletions.
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/branch/ActiveBranchStatus.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { getContextStore } from '$lib/utils/context';
import { openExternalUrl } from '$lib/utils/url';
import { VirtualBranch } from '$lib/vbranches/types';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
const {
isUnapplied = false,
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/branch/BranchDropzone.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import { getContext } from '$lib/utils/context';
import { BranchController } from '$lib/vbranches/branchController';
import { filesToOwnership } from '$lib/vbranches/ownership';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
const branchController = getContext(BranchController);
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/branch/BranchHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import { error } from '$lib/utils/toasts';
import { BranchController } from '$lib/vbranches/branchController';
import { VirtualBranch } from '$lib/vbranches/types';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import type { PullRequest } from '$lib/gitHost/interface/types';
import type { Persisted } from '$lib/persisted/persisted';
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/branch/BranchLaneContextMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
import { getContext, getContextStore } from '$lib/utils/context';
import { BranchController } from '$lib/vbranches/branchController';
import { VirtualBranch } from '$lib/vbranches/types';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
interface Props {
contextMenuEl?: ContextMenu;
Expand Down
6 changes: 3 additions & 3 deletions apps/desktop/src/lib/branch/BranchPreviewHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import { error } from '$lib/utils/toasts';
import { openExternalUrl } from '$lib/utils/url';
import { BranchController } from '$lib/vbranches/branchController';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
import { tooltip } from '@gitbutler/ui/utils/tooltip';
import type { PullRequest } from '$lib/gitHost/interface/types';
import type { Branch } from '$lib/vbranches/types';
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/branch/PassphraseBox.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import TextBox from '../shared/TextBox.svelte';
import { showError } from '$lib/notifications/toasts';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import type { SystemPromptHandle } from '$lib/backend/prompt';
export let prompt: SystemPromptHandle | undefined;
Expand Down
8 changes: 4 additions & 4 deletions apps/desktop/src/lib/commit/CommitCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
VirtualBranch,
type CommitStatus
} from '$lib/vbranches/types';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import { getTimeAgo } from '@gitbutler/ui/timeAgo/timeAgo';
import Button from '@gitbutler/ui/Button.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
import { getTimeAgo } from '@gitbutler/ui/utils/timeAgo';
import { tooltip } from '@gitbutler/ui/utils/tooltip';
import { type Snippet } from 'svelte';
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/commit/CommitDialog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { BranchController } from '$lib/vbranches/branchController';
import { Ownership } from '$lib/vbranches/ownership';
import { VirtualBranch } from '$lib/vbranches/types';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import type { Writable } from 'svelte/store';
export let projectId: string;
Expand Down
6 changes: 3 additions & 3 deletions apps/desktop/src/lib/commit/CommitList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
getRemoteCommits
} from '$lib/vbranches/contexts';
import { VirtualBranch } from '$lib/vbranches/types';
import LineGroup from '@gitbutler/ui/CommitLines/LineGroup.svelte';
import { LineManagerFactory } from '@gitbutler/ui/CommitLines/lineManager';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import LineGroup from '@gitbutler/ui/commitLines/LineGroup.svelte';
import { LineManagerFactory } from '@gitbutler/ui/commitLines/lineManager';
import { goto } from '$app/navigation';
export let isUnapplied: boolean;
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/commit/CommitMessageInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import { resizeObserver } from '$lib/utils/resizeObserver';
import { Ownership } from '$lib/vbranches/ownership';
import { VirtualBranch, LocalFile } from '$lib/vbranches/types';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Checkbox from '@gitbutler/ui/inputs/Checkbox.svelte';
import Checkbox from '@gitbutler/ui/Checkbox.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import { tooltip } from '@gitbutler/ui/utils/tooltip';
import { createEventDispatcher, onMount } from 'svelte';
import { fly } from 'svelte/transition';
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/commitLines/transformers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { AnyCommit } from '$lib/vbranches/types';
import type { CommitData, Author } from '@gitbutler/ui/CommitLines/types';
import type { CommitData, Author } from '@gitbutler/ui/commitLines/types';

export function transformAnyCommit(anyCommit: AnyCommit): CommitData {
const output = pullCommitDetails(anyCommit);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { PromptService } from '$lib/ai/promptService';
import Content from '$lib/components/AIPromptEdit/Content.svelte';
import { getContext } from '$lib/utils/context';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import { get } from 'svelte/store';
import type { Prompts, UserPrompt } from '$lib/ai/types';
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/AIPromptEdit/Content.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import { MessageRole, type UserPrompt } from '$lib/ai/types';
import DialogBubble from '$lib/components/AIPromptEdit/DialogBubble.svelte';
import TextBox from '$lib/shared/TextBox.svelte';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import { createEventDispatcher } from 'svelte';
export let displayMode: 'readOnly' | 'writable' = 'writable';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import { MessageRole } from '$lib/ai/types';
import { autoHeight } from '$lib/utils/autoHeight';
import { getMarkdownRenderer } from '$lib/utils/markdown';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import { marked } from 'marked';
import { createEventDispatcher } from 'svelte';
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/AppUpdater.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import upToDateSvg from '$lib/assets/empty-state/app-up-to-date.svg?raw';
import { UpdaterService, type Update } from '$lib/backend/updater';
import { getContext } from '$lib/utils/context';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
const updaterService = getContext(UpdaterService);
const currentVersion = updaterService.currentVersion;
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/BackButton.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import { goto } from '$app/navigation';
</script>

Expand Down
6 changes: 3 additions & 3 deletions apps/desktop/src/lib/components/BaseBranch.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import { showInfo } from '$lib/notifications/toasts';
import { getContext } from '$lib/utils/context';
import { BranchController } from '$lib/vbranches/branchController';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Checkbox from '@gitbutler/ui/inputs/Checkbox.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Checkbox from '@gitbutler/ui/Checkbox.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
import { tooltip } from '@gitbutler/ui/utils/tooltip';
import type { BaseBranch } from '$lib/baseBranch/baseBranch';
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/BaseBranchSwitch.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import { getContext, getContextStore } from '$lib/utils/context';
import { BranchController } from '$lib/vbranches/branchController';
import { VirtualBranchService } from '$lib/vbranches/virtualBranch';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
const baseBranch = getContextStore(BaseBranch);
const vbranchService = getContext(VirtualBranchService);
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/Board.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import { getContext, getContextStore } from '$lib/utils/context';
import { BranchController } from '$lib/vbranches/branchController';
import { VirtualBranchService } from '$lib/vbranches/virtualBranch';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import { open } from '@tauri-apps/api/shell';
const vbranchService = getContext(VirtualBranchService);
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/BranchPreview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import { getMarkdownRenderer } from '$lib/utils/markdown';
import { FileIdSelection } from '$lib/vbranches/fileIdSelection';
import { BranchData, type Branch } from '$lib/vbranches/types';
import LineGroup from '@gitbutler/ui/CommitLines/LineGroup.svelte';
import { LineManagerFactory } from '@gitbutler/ui/CommitLines/lineManager';
import LineGroup from '@gitbutler/ui/commitLines/LineGroup.svelte';
import { LineManagerFactory } from '@gitbutler/ui/commitLines/lineManager';
import lscache from 'lscache';
import { marked } from 'marked';
import { onMount, setContext } from 'svelte';
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/DecorativeSplitView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import gbLogoSvg from '$lib/assets/gb-logo.svg?raw';
import { User } from '$lib/stores/user';
import { getContextStore } from '$lib/utils/context';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
export let showLinks: boolean = true;
export let img: string | undefined = undefined;
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/FilterBranchesButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import ContextMenuItem from '$lib/components/contextmenu/ContextMenuItem.svelte';
import ContextMenuSection from '$lib/components/contextmenu/ContextMenuSection.svelte';
import Toggle from '$lib/shared/Toggle.svelte';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Checkbox from '@gitbutler/ui/inputs/Checkbox.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Checkbox from '@gitbutler/ui/Checkbox.svelte';
import type { Writable, Readable } from 'svelte/store';
export let filtersActive: Readable<boolean>;
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/FullviewLoading.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
</script>

<div class="loading" data-tauri-drag-region><Icon name="spinner" /></div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import { createEventDispatcher } from 'svelte';
export let isLast = false;
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/Login.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Link from '../shared/Link.svelte';
import { UserService, type LoginToken } from '$lib/stores/user';
import { getContext } from '$lib/utils/context';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
const userService = getContext(UserService);
const loading = userService.loading;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import { getContext } from '$lib/utils/context';
import * as toasts from '$lib/utils/toasts';
import { BranchController } from '$lib/vbranches/branchController';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import type { BaseBranch } from '$lib/baseBranch/baseBranch';
import { goto } from '$app/navigation';
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/ProblemLoadingRepo.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { showError } from '$lib/notifications/toasts';
import { getContext } from '$lib/utils/context';
import * as toasts from '$lib/utils/toasts';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import { goto } from '$app/navigation';
export let error: any = undefined;
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/ProjectSetup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import KeysForm from '$lib/settings/KeysForm.svelte';
import { getContext } from '$lib/utils/context';
import { BranchController } from '$lib/vbranches/branchController';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import { goto } from '$app/navigation';
export let remoteBranches: { name: string }[];
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/ProjectSetupTarget.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import Toggle from '$lib/shared/Toggle.svelte';
import { UserService } from '$lib/stores/user';
import { getContext } from '$lib/utils/context';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import { createEventDispatcher } from 'svelte';
export let projectName: string;
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/ProjectSwitcher.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import Select from '$lib/select/Select.svelte';
import SelectItem from '$lib/select/SelectItem.svelte';
import { getContext, maybeGetContext } from '$lib/utils/context';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import { goto } from '$app/navigation';
const projectService = getContext(ProjectService);
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/PromptModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import TextBox from '../shared/TextBox.svelte';
import { PromptService } from '$lib/backend/prompt';
import { getContext } from '$lib/utils/context';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
const promptService = getContext(PromptService);
const [prompt, error] = promptService.reactToPrompt({ timeoutMs: 30000 });
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/PullRequestPreview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import { remoteUrlIsHttp } from '$lib/utils/url';
import { BranchController } from '$lib/vbranches/branchController';
import { VirtualBranchService } from '$lib/vbranches/virtualBranch';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
import { marked } from 'marked';
import { get } from 'svelte/store';
import type { PullRequest } from '$lib/gitHost/interface/types';
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/RemoveProjectButton.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
export let projectTitle: string = '#';
export let isDeleting = false;
Expand Down
6 changes: 3 additions & 3 deletions apps/desktop/src/lib/components/ShareIssueModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import { User } from '$lib/stores/user';
import { getContext, getContextStore } from '$lib/utils/context';
import * as toasts from '$lib/utils/toasts';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Checkbox from '@gitbutler/ui/inputs/Checkbox.svelte';
import Modal from '@gitbutler/ui/modal/Modal.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import Checkbox from '@gitbutler/ui/Checkbox.svelte';
import Modal from '@gitbutler/ui/Modal.svelte';
import { getVersion } from '@tauri-apps/api/app';
import { onMount } from 'svelte';
import { page } from '$app/stores';
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/SomethingWentWrong.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import DecorativeSplitView from './DecorativeSplitView.svelte';
import ProjectSwitcher from './ProjectSwitcher.svelte';
import loadErrorSvg from '$lib/assets/illustrations/load-error.svg?raw';
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
export let error: any = undefined;
</script>
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/components/SyncButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import { getGitHostListingService } from '$lib/gitHost/interface/gitHostListingService';
import { getContext } from '$lib/utils/context';
import { VirtualBranchService } from '$lib/vbranches/virtualBranch';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import TimeAgo from '@gitbutler/ui/timeAgo/TimeAgo.svelte';
import Button from '@gitbutler/ui/Button.svelte';
import TimeAgo from '@gitbutler/ui/TimeAgo.svelte';
const baseBranchService = getContext(BaseBranchService);
const vbranchService = getContext(VirtualBranchService);
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/components/UpdateBaseButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { showInfo, showError } from '$lib/notifications/toasts';
import { getContext } from '$lib/utils/context';
import { BranchController } from '$lib/vbranches/branchController';
import Button from '@gitbutler/ui/inputs/Button.svelte';
import Button from '@gitbutler/ui/Button.svelte';
const branchController = getContext(BranchController);
Expand Down
5 changes: 2 additions & 3 deletions apps/desktop/src/lib/components/WelcomeAction.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import Icon from '@gitbutler/ui/icon/Icon.svelte';
import Icon from '@gitbutler/ui/Icon.svelte';
import type { Snippet } from 'svelte';
const {
Expand Down Expand Up @@ -91,8 +91,7 @@
.loading {
pointer-events: none;
background-color: var(--clr-bg-2);
border: 1px solid transparent;
opacity: 0.5;
opacity: 0.6;
}
.action__content {
Expand Down
Loading

0 comments on commit daa285f

Please sign in to comment.