forked from github/plane
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}
|
||||
input
|
||||
width="w-full"
|
||||
width="w-full z-20"
|
||||
>
|
||||
{THEME_OPTIONS.map((themeOption) => (
|
||||
<CustomSelect.Option key={themeOption.value} value={themeOption}>
|
||||
|
@ -48,7 +48,7 @@ export const ProjectLayoutRoot: React.FC = observer(() => {
|
||||
{Object.keys(getIssues ?? {}).length == 0 ? (
|
||||
<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" ? (
|
||||
<ListLayout />
|
||||
) : activeLayout === "kanban" ? (
|
||||
|
Loading…
Reference in New Issue
Block a user