Skip to content

Commit

Permalink
WIP fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Dec 4, 2023
1 parent a064511 commit 8ea91e7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 32 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
7 changes: 4 additions & 3 deletions src/scss/typography/font/_font_stack.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 8ea91e7

Please sign in to comment.