fix: changes height of create status button

This commit is contained in:
2025-09-04 10:48:11 +04:00
parent b0e2703479
commit 6d58add2e7

View File

@ -12,7 +12,9 @@ const CreateStatusButton = () => {
return (
<Box className={styles.container}>
<Box className={styles["inner-container"]}>
<Box
p={isMobile ? "sm" : 0}
className={styles["inner-container"]}>
<InPlaceInput
placeholder={"Название колонки"}
onComplete={statusesCrud.onCreate}
@ -23,7 +25,7 @@ const CreateStatusButton = () => {
<Group
gap={"xs"}
wrap={"nowrap"}
align={"start"}>
align={"center"}>
<IconPlus />
{isMobile && <Text>Добавить</Text>}
</Group>