Skip to content

Commit 2f80d59

Browse files
[WEB-5614] fix: empty state and padding token fixes (#8359)
1 parent 8bd23ac commit 2f80d59

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

apps/web/core/components/profile/profile-issues.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const ProfileIssuesPage = observer(function ProfileIssuesPage(props: Prop
5858
<>
5959
<div className="flex flex-col h-full w-full">
6060
{profileWorkItemsFilter && <WorkItemFiltersRow filter={profileWorkItemsFilter} />}
61-
<div className="-z-1 relative h-full w-full overflow-auto">
61+
<div className="relative h-full w-full overflow-auto">
6262
{activeLayout === "list" ? (
6363
<ProfileIssuesListLayout />
6464
) : activeLayout === "kanban" ? (

packages/tailwind-config/variables.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,6 +1140,10 @@
11401140
padding-bottom: 1.35rem;
11411141
}
11421142

1143+
@utility pt-page-y {
1144+
padding-top: 1.35rem;
1145+
}
1146+
11431147
@utility scrollbar-hide {
11441148
-ms-overflow-style: none;
11451149
scrollbar-width: none;

0 commit comments

Comments
 (0)