Merge pull request #3288 from makeplane/develop

Style: custom theme UI fixes (#3284)
This commit is contained in:
sriram veeraghanta 2023-12-30 11:07:04 +05:30 committed by GitHub
commit 34d872beca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ export const ThemeSwitch: FC<Props> = (props) => {
} }
onChange={onChange} onChange={onChange}
input input
width="w-full" width="w-full z-20"
> >
{THEME_OPTIONS.map((themeOption) => ( {THEME_OPTIONS.map((themeOption) => (
<CustomSelect.Option key={themeOption.value} value={themeOption}> <CustomSelect.Option key={themeOption.value} value={themeOption}>

View File

@ -48,7 +48,7 @@ export const ProjectLayoutRoot: React.FC = observer(() => {
{Object.keys(getIssues ?? {}).length == 0 ? ( {Object.keys(getIssues ?? {}).length == 0 ? (
<ProjectEmptyState /> <ProjectEmptyState />
) : ( ) : (
<div className="relative h-full w-full overflow-auto"> <div className="relative h-full w-full overflow-auto bg-custom-background-90">
{activeLayout === "list" ? ( {activeLayout === "list" ? (
<ListLayout /> <ListLayout />
) : activeLayout === "kanban" ? ( ) : activeLayout === "kanban" ? (