Skip to content

Commit

Permalink
Merge pull request #155 from xicri/chore-deps-update
Browse files Browse the repository at this point in the history
Update packages & Dependabot configs
  • Loading branch information
xicri authored Aug 2, 2024
2 parents 55d90e7 + 7237648 commit 03d11eb
Show file tree
Hide file tree
Showing 6 changed files with 229 additions and 1,125 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
cache: npm

- name: cache playwright browsers
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/vrt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
timeout-minutes: 15
env:
SERVER_ENV: local
AWS_REGION: auto # Cloudflare R2's region should be `auto`.
AWS_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }}
REG_SUIT_GITHUB_CLIENT_ID: ${{ secrets.REG_SUIT_GITHUB_CLIENT_ID }}
Expand Down
9 changes: 3 additions & 6 deletions components/word-list-search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,20 +168,17 @@ const removeTag = (tagIndex: number): void => {
}
&__scrollable {
display: flex;
overflow-x: scroll;
width: calc(100% - 0.4em);
cursor: text;
// hide scroll bar
-ms-overflow-style: none;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
width: calc(100% - 0.4em);
display: flex;
cursor: text;
}
&__active-tags {
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export default defineNuxtConfig({
modules: [
"nitro-cloudflare-dev",
"@nuxtjs/i18n",
"@nuxtjs/robots",
"@nuxtjs/sitemap",
"@pinia/nuxt",
...(isLocal ? [ "@nuxt/devtools" ] : []),
"nuxt-simple-robots",
],

i18n: {
Expand Down
Loading

0 comments on commit 03d11eb

Please sign in to comment.