mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
Merge pull request #3288 from makeplane/develop
Style: custom theme UI fixes (#3284)
This commit is contained in:
commit
34d872beca
@ -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}>
|
||||||
|
@ -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" ? (
|
||||||
|
Loading…
Reference in New Issue
Block a user