Skip to content

Commit

Permalink
Merge pull request #82 from sasarafu/chore/update
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
sasarafu authored Aug 10, 2024
2 parents d42457a + d86f47a commit 50c72b3
Show file tree
Hide file tree
Showing 8 changed files with 3,908 additions and 5,924 deletions.
7 changes: 6 additions & 1 deletion assets/css/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@
border-radius: 2px;
}

*, *:hover {
scrollbar-width: unset;
scrollbar-color: unset;
}

@-moz-document url-prefix() {
/* firefox only */
* {
*, *:hover {
scrollbar-width: thin;
scrollbar-color: oklch(var(--p)) transparent;
}
Expand Down
2 changes: 1 addition & 1 deletion components/instances/bluesky/SidebarCompose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const submit = async () => {
.post({ text: message.value.text });
message.value = {};
} catch (_) {}
} catch {}
submitting.value = false;
};
Expand Down
2 changes: 1 addition & 1 deletion components/instances/mastodon/SidebarCompose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const submit = async () => {
});
message.value = {};
} catch (_) {}
} catch {}
submitting.value = false;
};
Expand Down
2 changes: 1 addition & 1 deletion components/instances/misskey/SidebarCompose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const submit = async () => {
});
message.value = {};
} catch (_) {}
} catch {}
submitting.value = false;
};
Expand Down
5 changes: 1 addition & 4 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { version as packageVersion } from './package.json';

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-08-10',
devtools: { enabled: true },
ssr: false,
modules: [
Expand All @@ -18,10 +19,6 @@ export default defineNuxtConfig({
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:[email protected]',
},
{
rel: 'manifest',
href: '/manifest.webmanifest',
},
],
},
},
Expand Down
Loading

0 comments on commit 50c72b3

Please sign in to comment.