Add margin on both sides

This commit is contained in:
Chi Vinh Le
2018-08-06 20:20:51 +02:00
parent 8ecae1b9dd
commit 1879edbf58
2 changed files with 12 additions and 4 deletions
+8
View File
@@ -19689,6 +19689,14 @@
"ramda": "^0.25.0",
"source-map-loader": "^0.2.3",
"typescript": "^2.7.2"
},
"dependencies": {
"typescript": {
"version": "2.9.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz",
"integrity": "sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==",
"dev": true
}
}
},
"read-cache": {
@@ -8,14 +8,14 @@
}
.top {
margin-bottom: calc(0.5 * var(--spacing-unit));
margin: calc(0.5 * var(--spacing-unit)) 0;
}
.left {
margin-right: calc(0.5 * var(--spacing-unit));
margin: 0 calc(0.5 * var(--spacing-unit));
}
.right {
margin-left: calc(0.5 * var(--spacing-unit));
margin: 0 calc(0.5 * var(--spacing-unit));
}
.bottom {
margin-top: calc(0.5 * var(--spacing-unit));
margin: calc(0.5 * var(--spacing-unit)) 0;
}