mirror of
https://github.com/docmost/docmost.git
synced 2026-06-22 10:41:46 +10:00
fix spacing
This commit is contained in:
@@ -67,14 +67,14 @@ export function KanbanEmptyState({ base, view, pageId, editable }: KanbanEmptySt
|
|||||||
|
|
||||||
if (!editable) {
|
if (!editable) {
|
||||||
return (
|
return (
|
||||||
<Stack align="center" justify="center" gap="md" style={{ flex: 1 }}>
|
<Stack align="center" gap="md" style={{ flex: 1, paddingTop: "15vh" }}>
|
||||||
<Text fw={500}>{t("This board has no grouping property yet.")}</Text>
|
<Text fw={500}>{t("This board has no grouping property yet.")}</Text>
|
||||||
</Stack>
|
</Stack>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack align="center" justify="center" gap="md" style={{ flex: 1 }}>
|
<Stack align="center" gap="md" style={{ flex: 1, paddingTop: "15vh" }}>
|
||||||
<Text fw={500}>{t("Group this board by a select or status property.")}</Text>
|
<Text fw={500}>{t("Group this board by a select or status property.")}</Text>
|
||||||
{groupableProperties.length > 0 ? (
|
{groupableProperties.length > 0 ? (
|
||||||
<Select
|
<Select
|
||||||
|
|||||||
Reference in New Issue
Block a user