Skip to content

fix(button): change button y-padding for large buttons to be 9.5px in order to make them 48px in height as opposed to 49px. #253

fix(button): change button y-padding for large buttons to be 9.5px in order to make them 48px in height as opposed to 49px.

fix(button): change button y-padding for large buttons to be 9.5px in order to make them 48px in height as opposed to 49px. #253

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
jobs:
# Builds token library.
build:
name: Build library
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: yarn install --frozen-lockfile
- name: Append .env
run: |
echo "
FIGMA_ACCESS_TOKEN=${{ secrets.FIGMA_ACCESS_TOKEN }}
FIGMA_FILE_ID=${{ secrets.FIGMA_FILE_ID }}
" >> .env
- name: Build
run: yarn run build