This commit is contained in:
retoor 2025-06-24 16:54:18 +02:00
parent 08b3600836
commit b40060f770

View File

@ -73,12 +73,23 @@
margin-bottom: 1rem; margin-bottom: 1rem;
} }
.compose-wrapper textarea { resize: vertical; min-height: 60px; } .compose-wrapper textarea { resize: vertical; min-height: 60px; }
input,textarea {
padding: .5rem;
border: 1px solid #ccc;
border-radius: 4px;
width: 100%;
}
button {
padding: .5rem 1rem;
border: 1px solid #ccc;
border-radius: 4px;
cursor: pointer;
}
</style> </style>
</head> </head>
<body> <body>
<div id="app"> <div id="app">
<aside id="sidebar"> <aside id="sidebar">
<h2>Tags</h2>
<!-- New search box --> <!-- New search box -->
<input <input
type="text" type="text"
@ -86,6 +97,7 @@
placeholder="Search notes…" placeholder="Search notes…"
style="width: calc(100% - 2rem); margin: .5rem 1rem; padding: .5rem;" style="width: calc(100% - 2rem); margin: .5rem 1rem; padding: .5rem;"
/> />
<h2>Tags</h2>
<ul id="tag-list"></ul> <ul id="tag-list"></ul>
</aside> </aside>
<main> <main>