diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb6e22bc8..f1bd3b8a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,11 @@ jobs: - name: Install npm dependencies run: npm ci - - name: Test - run: npm test + - name: Lint + run: npm run lint + + - name: Build + run: npm run build - name: Upload build files uses: actions/upload-artifact@v2 diff --git a/src/css/_main-layout.scss b/src/css/_main-layout.scss index 26e4b654a..be642d66d 100644 --- a/src/css/_main-layout.scss +++ b/src/css/_main-layout.scss @@ -154,19 +154,17 @@ } .output-switcher { - filter: contrast(0) brightness(150%) saturate(100%); opacity: 0; &.transition { - transition: filter 0.5s ease-out 0.5s, opacity 0.5s ease-out 0.5s; + transition: opacity 0.5s ease-out 0.5s; @media (min-width: 640px) and (max-width: 900px) { - transition: filter 0.5s ease-out 0.6s, opacity 0.5s ease-out 0.6s; + transition: opacity 0.5s ease-out 0.6s; } } &.active { opacity: 1; - filter: none; } } diff --git a/src/index.html b/src/index.html index 66adc5ff5..f7766fc7b 100644 --- a/src/index.html +++ b/src/index.html @@ -86,7 +86,7 @@