diff --git a/open-isle-cli/src/views/MessagePageView.vue b/open-isle-cli/src/views/MessagePageView.vue index 7d2a6a9ff..cd8b731ee 100644 --- a/open-isle-cli/src/views/MessagePageView.vue +++ b/open-isle-cli/src/views/MessagePageView.vue @@ -11,7 +11,8 @@ - + + @@ -193,8 +194,9 @@ {{ TimeManager.format(item.createdAt) }} - - + + + @@ -220,7 +222,7 @@ export default { const router = useRouter() const notifications = ref([]) const isLoadingMessage = ref(false) - const selectedTab = ref('all') + const selectedTab = ref('unread') const filteredNotifications = computed(() => selectedTab.value === 'all' ? notifications.value @@ -446,11 +448,15 @@ export default { .message-page { background-color: var(--background-color); - padding: 20px; - height: calc(100vh - var(--header-height) - 40px); + height: calc(100vh - var(--header-height)); overflow-y: auto; } +.timeline-container { + padding: 10px 20px; + height: 100%; +} + .notif-content { display: flex; flex-direction: column;