diff --git a/.github/workflows/test-backstop.yml b/.github/workflows/test-backstop.yml index 59d2d55d9..46d0cccec 100644 --- a/.github/workflows/test-backstop.yml +++ b/.github/workflows/test-backstop.yml @@ -121,7 +121,7 @@ jobs: if: steps.backstop.outcome != 'success' env: REPORT_PATH: ${{ inputs.env }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: backstop-report retention-days: 3 diff --git a/front/src/lib/components/posts/Code/Code.svelte b/front/src/lib/components/posts/Code/Code.svelte index dd27b2507..80dfbdee7 100644 --- a/front/src/lib/components/posts/Code/Code.svelte +++ b/front/src/lib/components/posts/Code/Code.svelte @@ -6,7 +6,7 @@ import json from 'svelte-highlight/languages/json'; import plaintext from 'svelte-highlight/languages/plaintext'; import xml from 'svelte-highlight/languages/xml'; - import CodeCopy from '@components/posts/Code/CodeCopy.svelte'; + import CodeCopy from './CodeCopy.svelte'; import '@styles/components/Code/Code.css'; export let pageTitle, slug, syntax, code, showLineNumbers; diff --git a/front/src/lib/components/posts/PostsGrid.svelte b/front/src/lib/components/posts/PostsGrid.svelte index 9cbaa1295..d306e8ba0 100644 --- a/front/src/lib/components/posts/PostsGrid.svelte +++ b/front/src/lib/components/posts/PostsGrid.svelte @@ -1,17 +1,12 @@ diff --git a/front/src/lib/components/posts/PostsGridItem.svelte b/front/src/lib/components/posts/PostsGridItem.svelte new file mode 100644 index 000000000..770a09667 --- /dev/null +++ b/front/src/lib/components/posts/PostsGridItem.svelte @@ -0,0 +1,49 @@ + + +
  • + + + +
  • + + diff --git a/front/static/styles/noscript.css b/front/static/styles/noscript.css index 50d2a1b03..f0e36dae2 100644 --- a/front/static/styles/noscript.css +++ b/front/static/styles/noscript.css @@ -31,3 +31,6 @@ body .footer { .post .hero-wrap noscript .hero.noscript { display: block; } +.posts-grid .posts-grid-item { + opacity: 1 !important; +}