summaryrefslogtreecommitdiff
path: root/src/components/Global
diff options
context:
space:
mode:
authorSurenNeware <sneware9@in.ibm.com>2020-08-28 17:31:55 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-09-01 20:29:45 +0300
commit8ff08526ed51de14d9fb0a0850429bcfefd4a6b5 (patch)
treeb1d1a24d5d51721b64167673858ca833d9f551c4 /src/components/Global
parent75100469ab66851d84082b9651469901136f3d7e (diff)
downloadwebui-vue-8ff08526ed51de14d9fb0a0850429bcfefd4a6b5.tar.xz
Increase the global margin size for page section
- Increase the global margin bottom size to 4rem for the page section. - Kept same size for responsive sizes. Signed-off-by: Suren Neware <sneware9@in.ibm.com> Change-Id: I155006a0ea9a7f6fd947d6daaea4510cadf641db
Diffstat (limited to 'src/components/Global')
-rw-r--r--src/components/Global/PageSection.vue8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/components/Global/PageSection.vue b/src/components/Global/PageSection.vue
index 48bb8a19..303b6e1e 100644
--- a/src/components/Global/PageSection.vue
+++ b/src/components/Global/PageSection.vue
@@ -19,17 +19,11 @@ export default {
<style lang="scss" scoped>
.page-section {
- margin-bottom: $spacer * 2;
+ margin-bottom: $spacer * 4;
}
h2 {
@include font-size($h3-font-size);
margin-bottom: $spacer;
- &::after {
- content: '';
- display: block;
- width: 100px;
- margin-top: 10px;
- }
}
</style>