style fix

This commit is contained in:
samepant 2021-08-29 18:26:24 -04:00
parent d68aea1c0f
commit 7cdae3a192
4 changed files with 30 additions and 1 deletions

View File

@ -7,7 +7,7 @@ export default (props) => {
};
return (
<StackableContainer lessPadding>
<StackableContainer lessPadding fullHeight>
<h2>Holdings</h2>
<StackableContainer lessPadding lessMargin>
<span>{props.holdings} ATOM</span>

View File

@ -13,6 +13,7 @@ export default (props) => (
flex-direction: column;
justify-content: space-between;
position: relative;
height: ${props.fullHeight ? "100%" : "auto"};
}
.container:first-child {

27
package-lock.json generated
View File

@ -13,6 +13,7 @@
"@keplr-wallet/types": "^0.9.0-alpha.4",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"copy-to-clipboard": "^3.3.1",
"encoding": "^0.1.13",
"faunadb": "^4.1.1",
"next": "^10.0.8",
@ -1103,6 +1104,14 @@
"safe-buffer": "~5.1.1"
}
},
"node_modules/copy-to-clipboard": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz",
"integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==",
"dependencies": {
"toggle-selection": "^1.0.6"
}
},
"node_modules/core-js": {
"version": "2.6.12",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
@ -3317,6 +3326,11 @@
"node": ">=8.0"
}
},
"node_modules/toggle-selection": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
"integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI="
},
"node_modules/toidentifier": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
@ -4553,6 +4567,14 @@
"safe-buffer": "~5.1.1"
}
},
"copy-to-clipboard": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz",
"integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==",
"requires": {
"toggle-selection": "^1.0.6"
}
},
"core-js": {
"version": "2.6.12",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
@ -6335,6 +6357,11 @@
"is-number": "^7.0.0"
}
},
"toggle-selection": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
"integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI="
},
"toidentifier": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",

View File

@ -13,6 +13,7 @@
"@keplr-wallet/types": "^0.9.0-alpha.4",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"copy-to-clipboard": "^3.3.1",
"encoding": "^0.1.13",
"faunadb": "^4.1.1",
"next": "^10.0.8",