Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Prettier

on:
push:
branches: [ development, master ]
pull_request:
branches: [ development, master ]

jobs:
lint:
name: Run prettier
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12

- name: Install Node.js dependencies
run: npm ci

- name: Run linter
uses: wearerequired/lint-action@v1
with:
prettier: true
auto_fix: true
1 change: 1 addition & 0 deletions design/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Current Designs

<img src="https://github.com/SHITIZ-AGGARWAL/causefolio/blob/design/design/Landing%20Page-part-1.png" width="700 px">
<img src="https://github.com/SHITIZ-AGGARWAL/causefolio/blob/design/design/Landing%20Page-part-3.png" width="700 px">
<img src="https://github.com/SHITIZ-AGGARWAL/causefolio/blob/design/design/Dasboard.png" width="700 px">
Expand Down
4 changes: 2 additions & 2 deletions src/components/CreateNewEvent.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const useStyles = makeStyles(theme => ({
width: '200px',
height: '38px',
borderRadius: '20px',
marginRight: '15px',
marginRight: '15px'
},
createbtn: {
marginTop: '60px',
Expand All @@ -60,7 +60,7 @@ const useStyles = makeStyles(theme => ({
width: '200px',
height: '38px',
borderRadius: '20px',
marginRight: '60px',
marginRight: '60px'
},
inputDiv: {
background: 'rgba(42, 23, 89, 0.25)',
Expand Down