summaryrefslogtreecommitdiff
path: root/src/views/Overview/Overview.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Overview/Overview.vue')
-rw-r--r--src/views/Overview/Overview.vue17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/views/Overview/Overview.vue b/src/views/Overview/Overview.vue
index 2672af7e..4412d19d 100644
--- a/src/views/Overview/Overview.vue
+++ b/src/views/Overview/Overview.vue
@@ -1,9 +1,12 @@
<template>
<b-container fluid>
<PageTitle />
+ <div class="quicklinks-section">
+ <OverviewQuickLinks />
+ </div>
<b-row>
- <b-col lg="8" sm="12">
- <PageSection sectionTitle="Server information">
+ <b-col>
+ <PageSection sectionTitle="Server Information">
<b-row>
<b-col sm="6">
<dl>
@@ -76,9 +79,6 @@
</b-row>
</PageSection>
</b-col>
- <b-col lg="4" sm="12">
- <OverviewQuickLinks />
- </b-col>
</b-row>
<PageSection sectionTitle="High priority events">
<OverviewEvents />
@@ -127,3 +127,10 @@ export default {
}
};
</script>
+
+<style lang="scss" scoped>
+.quicklinks-section {
+ margin-bottom: $spacer * 2;
+ margin-left: -1rem;
+}
+</style>