diff options
Diffstat (limited to 'src/client/pages/notifications.vue')
| -rw-r--r-- | src/client/pages/notifications.vue | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/client/pages/notifications.vue b/src/client/pages/notifications.vue index 6b16b85b78..633718a90b 100644 --- a/src/client/pages/notifications.vue +++ b/src/client/pages/notifications.vue @@ -1,6 +1,6 @@ <template> -<div class=""> - <XNotifications class="_content" @before="before" @after="after" page/> +<div class="clupoqwt" v-size="{ min: [800] }"> + <XNotifications class="notifications" @before="before" @after="after" page/> </div> </template> @@ -43,3 +43,17 @@ export default defineComponent({ } }); </script> + +<style lang="scss" scoped> +.clupoqwt { + &.min-width_800px { + background: var(--bg); + padding: 32px 0; + + > .notifications { + max-width: 800px; + margin: 0 auto; + } + } +} +</style> |