Add some paddings
This commit is contained in:
parent
8754900e84
commit
b49c759bf7
|
|
@ -137,7 +137,7 @@
|
||||||
width: 640px;
|
width: 640px;
|
||||||
}
|
}
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 0 15px;
|
padding: $large-spacing 15px;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@
|
||||||
@import "@/styles/_mixins.scss";
|
@import "@/styles/_mixins.scss";
|
||||||
|
|
||||||
.book {
|
.book {
|
||||||
|
padding-top: $large-spacing;
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
display: -ms-grid;
|
display: -ms-grid;
|
||||||
@supports (display: grid) {
|
@supports (display: grid) {
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,8 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
@import "@/styles/_variables.scss";
|
||||||
|
|
||||||
.portfolio {
|
.portfolio {
|
||||||
display: -ms-grid;
|
display: -ms-grid;
|
||||||
@supports (display: grid) {
|
@supports (display: grid) {
|
||||||
|
|
@ -59,6 +61,8 @@
|
||||||
display: grid;
|
display: grid;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
|
padding-top: $large-spacing;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -74,10 +74,8 @@
|
||||||
@import "@/styles/_functions.scss";
|
@import "@/styles/_functions.scss";
|
||||||
|
|
||||||
.project {
|
.project {
|
||||||
margin-bottom: -50px;
|
|
||||||
|
|
||||||
&__header {
|
&__header {
|
||||||
padding: 30px;
|
padding: $large-spacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__add-entry {
|
&__add-entry {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue