Implement friends list and refactor components #28

Merged
twig merged 24 commits from friends-list into main 2025-07-12 17:28:43 +00:00
Showing only changes of commit 890fbebbe9 - Show all commits

View file

@ -1,8 +1,8 @@
<template>
<NuxtLayout name="client">
<DirectMessagesSidebar />
<div id="friends-page-content">
<div id="navigation-bar">
<div :id="$style['page-content']">
<div :id="$style['navigation-bar']">
<Button v-for="button of buttons" :text="button.label" variant="normal" :callback="button.updateFilter" />
</div>
@ -35,8 +35,8 @@ function updateFilter(newFilter: string) {
}
</script>
<style>
#friends-page-content {
<style module>
#page-content {
display: flex;
flex-direction: column;