feat: deal card, deal status, deal new dates, indicator, hide navbar

This commit is contained in:
2024-09-30 22:53:31 +03:00
parent 100af0aa06
commit f202e9b9fa
4 changed files with 52 additions and 44 deletions

View File

@@ -12,7 +12,6 @@ const HideNavbarAffix: FC<Props> = (props) => {
const dispatch = useAppDispatch();
return (
<>
{/*{uiState.hideNavbar && (*/}
<Transition
transition={"slide-right"}
mounted={uiState.hideNavbar}
@@ -32,18 +31,14 @@ const HideNavbarAffix: FC<Props> = (props) => {
}}
className={stylesCss["icon"]}
// color={"#2d2d2d"}
radius="xl"
size={45}>
<IconArrowRight
stroke={1.5}
// size={30}
/>
</ActionIcon>
</Affix>)}
</Transition>
{/*)*/}
{/*}*/}
</>
);