From 2d60db85475e87dbe253ccb1fe3383c304a91595 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Sun, 24 Dec 2017 22:59:49 +0100 Subject: [PATCH] Fixed a few padding issues --- front/src/App.vue | 4 ++-- front/src/components/library/Library.vue | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/front/src/App.vue b/front/src/App.vue index c1c0874998..d1d63e6514 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -2,7 +2,7 @@ <div id="app"> <sidebar></sidebar> <router-view :key="$route.fullPath"></router-view> - <div class="ui divider"></div> + <div class="ui fitted divider"></div> <div id="footer" class="ui vertical footer segment"> <div class="ui container"> <div class="ui stackable equal height stackable grid"> @@ -55,7 +55,7 @@ export default { padding: 1.5rem 0; } #footer { - padding: 1.5rem; + padding: 4em; } .ui.stripe.segment { padding: 4em; diff --git a/front/src/components/library/Library.vue b/front/src/components/library/Library.vue index 3e3de9c610..f5303d88c8 100644 --- a/front/src/components/library/Library.vue +++ b/front/src/components/library/Library.vue @@ -23,6 +23,10 @@ export default { <style lang="scss"> .library.pusher > .ui.secondary.menu { margin: 0 2.5rem; + .item { + padding-top: 1.5em; + padding-bottom: 1.5em; + } } .library { -- GitLab