diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7cdee7c..fc32da1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -141,41 +141,41 @@ jobs: # Publish to GitHub Packages # ============================================================================= - publish-gpr: + # publish-gpr: - needs: build + # needs: build - runs-on: ubuntu-latest + # runs-on: ubuntu-latest - permissions: - contents: read - packages: write + # permissions: + # contents: read + # packages: write - steps: + # steps: - - - # uses: actions/checkout@v3 - uses: actions/checkout@v4 + # - + # # uses: actions/checkout@v3 + # uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - # node-version: 16 - node-version: 18 - registry-url: https://npm.pkg.github.com/ - scope: '@scape-agency' + # - + # uses: actions/setup-node@v4 + # with: + # # node-version: 16 + # node-version: 18 + # registry-url: https://npm.pkg.github.com/ + # # scope: '@scape-agency' - - - name: Download build.zip - uses: actions/download-artifact@v2 - with: - name: build.zip + # - + # name: Download build.zip + # uses: actions/download-artifact@v2 + # with: + # name: build.zip - - - name: Unzip build.zip - run: unzip -q build.zip + # - + # name: Unzip build.zip + # run: unzip -q build.zip - - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + # - + # run: npm publish + # env: + # NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/src/scss/typography/font/_font_stack.scss b/src/scss/typography/font/_font_stack.scss index 582a9f3..917a0ff 100644 --- a/src/scss/typography/font/_font_stack.scss +++ b/src/scss/typography/font/_font_stack.scss @@ -21,10 +21,11 @@ $font_fallback_sans_serif: "Helvetica Neue", "Helvetica", "Arial", sans-serif; $font_fallback_serif: serif; $font_fallback_monospace: monospace; -$font_default_sans_serif: "Scape"; -$font_default_serif: "Scape"; -$font_default_monospace: "Scape"; +$font_default_sans_serif: "Scape" !default; +$font_default_serif: "Scape" !default; +$font_default_monospace: "Scape" !default; $font_stack_sans_serif: $font_default_sans_serif, $font_fallback_sans_serif !important; $font_stack_serif: $font_default_serif, $font_fallback_serif !important; $font_stack_monospace: $font_default_monospace, $font_fallback_monospace !important; +