-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5176 from leather-wallet/release/abhorrent-evanes…
…cent-giraffe Release - Finally Centered the div
- Loading branch information
Showing
488 changed files
with
9,001 additions
and
7,856 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
|
||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'daily' | ||
groups: | ||
leather: | ||
applies-to: version-updates | ||
patterns: | ||
- '@leather-wallet/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,20 +2,17 @@ name: PR extension build | |
|
||
on: [pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
pre-run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/cancel-workflow-action@main | ||
with: | ||
access_token: ${{ github.token }} | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
sha-hash: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
SHORT_SHA: ${{ steps.short-sha.outputs.SHORT_SHA }} | ||
steps: | ||
- run: echo "${{ github.workflow }}-${{ github.ref }}" | ||
- name: Make short commit SHA | ||
id: short-sha | ||
run: echo "SHORT_SHA=`echo ${{ github.event.pull_request.head.sha }} | cut -c1-7`" >> $GITHUB_OUTPUT | ||
|
@@ -24,7 +21,6 @@ jobs: | |
if: github.repository == 'leather-wallet/extension' && github.actor != 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
needs: | ||
- pre-run | ||
- sha-hash | ||
steps: | ||
- uses: kyranjamie/[email protected] | ||
|
@@ -36,7 +32,6 @@ jobs: | |
name: build-${{ matrix.target }}-extension | ||
runs-on: ubuntu-latest | ||
needs: | ||
- pre-run | ||
- sha-hash | ||
strategy: | ||
matrix: | ||
|
@@ -73,7 +68,6 @@ jobs: | |
if: github.repository == 'leather-wallet/extension' && github.actor != 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
needs: | ||
- pre-run | ||
- sha-hash | ||
- build | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import { breakpoints, tokens } from '@leather-wallet/tokens'; | ||
|
||
export const customViewports = { | ||
popup: { | ||
name: 'Popup', | ||
styles: { | ||
width: tokens.sizes.popupWidth.value, | ||
height: tokens.sizes.popupHeight.value, | ||
}, | ||
}, | ||
sm: { | ||
name: 'sm', | ||
styles: { | ||
width: breakpoints.sm, | ||
height: '100%', | ||
}, | ||
}, | ||
md: { | ||
name: 'md', | ||
styles: { | ||
width: breakpoints.md, | ||
height: '100%', | ||
}, | ||
}, | ||
lg: { | ||
name: 'lg', | ||
styles: { | ||
width: breakpoints.lg, | ||
height: '100%', | ||
}, | ||
}, | ||
xl: { | ||
name: 'xl', | ||
styles: { | ||
width: breakpoints.xl, | ||
height: '100%', | ||
}, | ||
}, | ||
'2xl': { | ||
name: '2xl', | ||
styles: { | ||
width: breakpoints['2xl'], | ||
height: '100%', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.