[WEB-5614] fix: empty state and padding token fixes (#8359)
This commit is contained in:
parent
8bd23ac44b
commit
2f80d59ba9
2 changed files with 5 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ export const ProfileIssuesPage = observer(function ProfileIssuesPage(props: Prop
|
||||||
<>
|
<>
|
||||||
<div className="flex flex-col h-full w-full">
|
<div className="flex flex-col h-full w-full">
|
||||||
{profileWorkItemsFilter && <WorkItemFiltersRow filter={profileWorkItemsFilter} />}
|
{profileWorkItemsFilter && <WorkItemFiltersRow filter={profileWorkItemsFilter} />}
|
||||||
<div className="-z-1 relative h-full w-full overflow-auto">
|
<div className="relative h-full w-full overflow-auto">
|
||||||
{activeLayout === "list" ? (
|
{activeLayout === "list" ? (
|
||||||
<ProfileIssuesListLayout />
|
<ProfileIssuesListLayout />
|
||||||
) : activeLayout === "kanban" ? (
|
) : activeLayout === "kanban" ? (
|
||||||
|
|
|
||||||
|
|
@ -1140,6 +1140,10 @@
|
||||||
padding-bottom: 1.35rem;
|
padding-bottom: 1.35rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@utility pt-page-y {
|
||||||
|
padding-top: 1.35rem;
|
||||||
|
}
|
||||||
|
|
||||||
@utility scrollbar-hide {
|
@utility scrollbar-hide {
|
||||||
-ms-overflow-style: none;
|
-ms-overflow-style: none;
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue