Merge pull request #62 from privacy-scaling-explorations/dev

Fixing mirror image dimensions
This commit is contained in:
AtHeartEngineer
2022-10-24 13:04:37 -04:00
committed by GitHub
3 changed files with 8 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ on:
push:
branches: [ master ]
pull_request:
types: closed
types: [closed]
branches:
- master
@@ -19,6 +19,8 @@ jobs:
steps:
- name: Checkout 🛒
uses: actions/checkout@v3
with:
node-version: 16.x
- name: Install and Build
run: |

View File

@@ -13,7 +13,7 @@ on:
jobs:
build-and-deploy-dev:
permissions:
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@@ -22,6 +22,8 @@ jobs:
steps:
- name: Checkout 🛒
uses: actions/checkout@v3
with:
node-version: 16.x
- name: Install and Build
run: |
@@ -30,7 +32,7 @@ jobs:
- name: Deploy to gh-pages-dev branch
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
branch: gh-pages-dev
folder: build

View File

@@ -32,7 +32,7 @@ function Navbar() {
<img src={discord} alt="" />
</a>
<a href="https://mirror.xyz/privacy-scaling-explorations.eth" aria-label="PSE Mirror" target="_blank" rel="noopener noreferrer">
<img src={mirror} alt="" />
<img src={mirror} alt="" width="40px" height="40px"/>
</a>
</div>
<div id="menu-link" onClick={() => { toggleMenu() }}>{isOpen ? 'Close' : 'Menu'}</div>