Skip to content

Commit

Permalink
Merge pull request #10 from green-code-initiative/improve-form-layout
Browse files Browse the repository at this point in the history
Improve form layout
  • Loading branch information
obeone authored Oct 27, 2023
2 parents a181d61 + 4037e2a commit d90d3b8
Show file tree
Hide file tree
Showing 13 changed files with 413 additions and 390 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
pull_request:
types: [ opened, synchronize, reopened ]

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Build
run: npm run build
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_modules
/package
.env
.env.*
.idea
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
Expand Down
Empty file removed dist/.gitkeep
Empty file.
3 changes: 0 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Mulish:wght@500;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Ecocode</title>
</head>

Expand Down
218 changes: 218 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"npm-run-all": "^4.1.5",
"typescript": "~5.1.6",
"vite": "^4.4.9",
"vite-svg-loader": "^4.0.0",
"vue-tsc": "^1.8.8"
}
}
1 change: 1 addition & 0 deletions src/assets/icons/chevron_left.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/icons/chevron_right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/img/icon/arrow-left.webp
Binary file not shown.
Binary file removed src/assets/img/icon/arrow-right.webp
Binary file not shown.
Loading

0 comments on commit d90d3b8

Please sign in to comment.