1
0
Fork 0
activist/src/components/Sidebar.vue

34 lines
808 B
Vue
Raw Normal View History

<script lang="ts" setup>
2024-11-22 19:38:29 -05:00
import Navigation from "@/components/Navigation.vue";
</script>
<template>
<aside>
<Navigation></Navigation>
<div class="mt-auto">
<hr class="mb-4 mx-4 border-t border-0 border-surface-800" />
<a class="m-4 nav-item">
<img
alt="user avatar"
src="https://fqjltiegiezfetthbags.supabase.co/storage/v1/render/image/public/block.images/blocks/avatars/circle/avatar-f-1.png" class="mr-2 lg:mr-0 w-8 h-8" />
<span class="font-medium inline lg:hidden">Amy Elsner</span>
</a>
2024-11-22 19:38:29 -05:00
</div>
</aside>
</template>
2024-11-22 19:38:29 -05:00
<style scoped>
@import "@/assets/nav-items.css";
aside {
background-color: #333;
display: flex;
flex-direction: row;
height: 100%;
}
@media (screen(sm)) {
aside {
flex-direction: column;
}
}
2024-11-22 19:38:29 -05:00
</style>