Add some paddings

This commit is contained in:
Ramon Wenger 2019-03-14 09:50:23 +01:00
parent 8754900e84
commit b49c759bf7
4 changed files with 8 additions and 4 deletions

View File

@ -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;

View File

@ -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) {

View File

@ -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>

View File

@ -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 {