Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Jan 31, 2024
1 parent 20a9777 commit d044269
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/renderer/src/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ body {
}

.btn-app-store-modal {
@apply bg-app-gradient btn !rounded-full;
@apply btn !rounded-full bg-app-gradient;
}

.btn-app-store-modal-secondary {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/routes/main/app-store/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<MainHeader {handlePress} bind:searchInput type={AppStore} />

<div class="bg-apps-list-dark-gradient grow">
<div class="grow bg-apps-list-dark-gradient">
<div class=" text-token grid w-full gap-4 md:grid-cols-2">
<div class="card variant-soft-warning m-4 flex items-center p-4">
<Avatar initials={'kn'} rounded="rounded-2xl" background="bg-app-gradient" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
const openApp = client.openApp.createMutation();
</script>

<div class="align-center bg-apps-list-dark-gradient flex grow justify-center bg-fixed">
<div class="align-center flex grow justify-center bg-apps-list-dark-gradient bg-fixed">
<div
class="flex snap-x snap-mandatory scroll-px-4 gap-4 self-center overflow-x-auto scroll-smooth px-4 pt-4"
>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/routes/main/components/MainHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
};
</script>

<div class="bg-apps-input-dark-gradient flex justify-between p-3">
<div class="flex justify-between bg-apps-input-dark-gradient p-3">
{#if type == AppsView}
<Button
props={{
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/src/routes/splash/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
});
</script>

<div class="bg-login-background relative flex h-screen flex-col bg-fixed bg-top bg-no-repeat">
<div class="bg-tertiary-500 absolute inset-0 opacity-10" />
<div class="relative flex h-screen flex-col bg-login-background bg-fixed bg-top bg-no-repeat">
<div class="absolute inset-0 bg-tertiary-500 opacity-10" />
<!-- White overlay div -->
<p class="z-10 p-1 text-center text-xs opacity-30">Holochain Beta 0.1</p>
{#if displayBackButton}
Expand Down

0 comments on commit d044269

Please sign in to comment.