Skip to content

Commit

Permalink
style and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
alelliott committed Jun 14, 2024
1 parent 5e5af23 commit d86a3e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"build": "dotenv -e .env.production yarn vite-build",
"analyze": "dotenv -e .env.analyze yarn vite-build",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint \"src/**/*.{vue,scss,css}\" --max-warnings=20",
"lint:scripts": "eslint \"{src,config}/**/*.{vue,js,ts}\" --cache --fix --max-warnings=20",
"lint:styles": "stylelint \"src/**/*.{vue,scss,css}\" --max-warnings=50",
"lint:scripts": "eslint \"{src,config}/**/*.{vue,js,ts}\" --cache --fix --max-warnings=50",
"preview": "vite preview",
"rsc": "node scripts/release-sanity-check.mjs",
"generate-ether-types": "typechain --target=ethers-v5 'src/abi/**/*.json' --out-dir src/types/contracts"
Expand Down
3 changes: 2 additions & 1 deletion src/pages/HomePage/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,11 @@ const tabs = computed<Tab[]>(() => {
.home-page__content-wrp {
width: 100%;
max-width: toRem(846);
// max-width: toRem(846);
@include respond-to(medium) {
max-width: unset;
padding-left: unset;
}
}
Expand Down

0 comments on commit d86a3e2

Please sign in to comment.