fix: dropdown clipped by overflow-hidden, change to overflow-x-hidden

This commit is contained in:
spinline
2026-02-06 14:09:34 +03:00
parent d1604fb8fb
commit e4cc6322bf

View File

@@ -64,7 +64,7 @@ pub fn App() -> impl IntoView {
<div class="drawer lg:drawer-open h-full w-full"> <div class="drawer lg:drawer-open h-full w-full">
<input id="my-drawer" type="checkbox" class="drawer-toggle" /> <input id="my-drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content flex flex-col h-full overflow-hidden bg-base-100 text-base-content text-sm select-none"> <div class="drawer-content flex flex-col h-full overflow-x-hidden bg-base-100 text-base-content text-sm select-none">
// Toolbar at the top // Toolbar at the top
<Toolbar /> <Toolbar />