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:
Prateek Shourya 2023-12-30 11:05:15 +05:30 committed by GitHub
parent 22bbdd5ab8
commit 4263e9b507
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}
input
width="w-full"
width="w-full z-20"
>
{THEME_OPTIONS.map((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 ? (
<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" ? (