forked from github/plane
Style: custom theme UI fixes (#3284)
* style: fix `background-color` inconsistency in issue layout when custom theme is applied. * fix: theme dropdown overlapping with input color picker icons (z-index issue).
This commit is contained in:
parent
22bbdd5ab8
commit
4263e9b507
@ -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