mirror of
https://github.com/ClipFusion-org/clipfusion.git
synced 2025-08-03 14:45:09 +00:00
fixed selection text in dropdown and sheet menus
This commit is contained in:
parent
ddac9e31bd
commit
b9266261ef
@ -422,7 +422,7 @@ const ProjectContainer = ({
|
||||
</div>
|
||||
<div className="flex flex-col lg:xl:flex-row items-center gap-1" data-selectable="true">
|
||||
{!selecting && <ProjectDescription project={project} />}
|
||||
<ProjectDropdown selected={project.uuid in selectedProjects} project={project} />
|
||||
<ProjectDropdown selected={selectedProjects.includes(project.uuid)} project={project} />
|
||||
</div>
|
||||
</div>
|
||||
{selecting && (
|
||||
|
@ -32,7 +32,7 @@ export default function Settings(): ReactNode {
|
||||
</WideContainer>
|
||||
</SidebarTriggerAdjustable>
|
||||
</div>
|
||||
<div className="flex flex-col justify-start items-center h-screen">
|
||||
<div className="flex flex-col justify-start items-center">
|
||||
<WideContainer>
|
||||
<div className="flex flex-col gap-2 mt-2 justify-center">
|
||||
<Link href="/settings/storage">
|
||||
|
@ -55,7 +55,7 @@ export default function Storage() {
|
||||
</WideContainer>
|
||||
</SidebarTriggerAdjustable>
|
||||
</StickyTopContainer>
|
||||
<div className={cn("flex flex-col items-center justify-start gap-1 md:lg:gap-2 mt-2 h-screen", backButtonAdjust)}>
|
||||
<div className={cn("flex flex-col items-center justify-start gap-1 md:lg:gap-2 mt-2", backButtonAdjust)}>
|
||||
<WideContainer>
|
||||
<AscendingCard className="flex flex-row justify-between items-center p-4">
|
||||
<div className="flex flex-row gap-2 ">
|
||||
|
Loading…
Reference in New Issue
Block a user