fix: ui and bug fix (#1043)
* style: calendar border added * fix: calendar issue ellipsis position fix * fix: help section overflow fix * fix: module card date overflow fix * style: page detail padding and position fix * fix: cycle and module sidebar fix
This commit is contained in:
parent
37bb183bf0
commit
dbbd9add99
10 changed files with 20 additions and 19 deletions
|
|
@ -147,9 +147,7 @@ const SingleCycle: React.FC = () => {
|
|||
</CustomMenu>
|
||||
}
|
||||
right={
|
||||
<div
|
||||
className={`flex items-center gap-2 ${cycleSidebar ? "mr-[24rem]" : ""} duration-300`}
|
||||
>
|
||||
<div className={`flex items-center gap-2 duration-300`}>
|
||||
<IssuesFilterView />
|
||||
<SecondaryButton
|
||||
onClick={() => setAnalyticsModal(true)}
|
||||
|
|
|
|||
|
|
@ -150,9 +150,7 @@ const SingleModule: React.FC = () => {
|
|||
</CustomMenu>
|
||||
}
|
||||
right={
|
||||
<div
|
||||
className={`flex items-center gap-2 ${moduleSidebar ? "mr-[24rem]" : ""} duration-300`}
|
||||
>
|
||||
<div className={`flex items-center gap-2 duration-300`}>
|
||||
<IssuesFilterView />
|
||||
<SecondaryButton
|
||||
onClick={() => setAnalyticsModal(true)}
|
||||
|
|
|
|||
|
|
@ -303,7 +303,7 @@ const SinglePage: NextPage = () => {
|
|||
{pageDetails ? (
|
||||
<div className="flex h-full flex-col justify-between space-y-4 overflow-hidden p-4">
|
||||
<div className="h-full w-full overflow-y-auto">
|
||||
<div className="flex items-center justify-between gap-2">
|
||||
<div className="flex items-start justify-between gap-2">
|
||||
<div className="flex w-full flex-col gap-2">
|
||||
<div className="flex w-full items-center gap-2">
|
||||
<button
|
||||
|
|
@ -324,6 +324,7 @@ const SinglePage: NextPage = () => {
|
|||
required={true}
|
||||
className="min-h-10 block w-full resize-none overflow-hidden rounded border-none bg-transparent px-3 py-2 text-xl font-semibold outline-none ring-0 placeholder:text-[#858E96]"
|
||||
role="textbox"
|
||||
noPadding
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
|
@ -502,7 +503,7 @@ const SinglePage: NextPage = () => {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div className="mt-4 h-full w-full">
|
||||
<div className="mt-5 h-full w-full">
|
||||
{pageBlocks ? (
|
||||
<>
|
||||
<DragDropContext onDragEnd={handleOnDragEnd}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue