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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"lint:fix": "yarn lint:js --fix && yarn lint:style --fix",
"test": "jest"
},
"lint-staged": {
Expand All @@ -18,7 +19,6 @@
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
Expand Down
7 changes: 6 additions & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<container>
<BlockTitle>What is MultiCash...</BlockTitle>

<div class="mt-8 grid grid-cols-3 gap-8">
<div class="mt-8 grid grid-cols-4 gap-8">
<Feature class="transform -rotate-3 text-green-500" title="Save">
Earn up to 2.50% APY interest on your digital currency holdings.
That is 41.66x the average national savings account rate of 0.06%
Expand All @@ -50,6 +50,11 @@
fees which are as a set 0.50%, just enough to ensure payments are
delivered instantly.
</Feature>
<Feature class="transform rotate-1 text-grey-500" title="Save">
Earn up to 2.50% APY interest on your digital currency holdings.
That is 41.66x the average national savings account rate of 0.06%
APY.</Feature
>
</div>
</container>
</block>
Expand Down