mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
c44f25d90d
- Fix cookie check logic: use `!includes('sidebar_state=false')` instead
of `includes('sidebar_state=true')` so sidebar defaults to open when
no cookie is set
- Add --sidebar-width CSS variable binding to desktop sidebar element
- Adjust SIDEBAR_WIDTH_MOBILE value
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
@memohai/ui
UI components for Memoh.
Installation
npm install @memohai/ui
Usage
Import the CSS file in your style.css file.
@import "tailwindcss";
@import "tw-animate-css";
@import "@memohai/ui/style.css";
And then you can use the components in your Vue components.
<script setup>
import { Button } from '@memohai/ui';
</script>
<template>
<Button>Click me</Button>
</template>