Add for leave family
This commit is contained in:
@@ -324,7 +324,7 @@ export default function AdminUsersPage() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="overflow-hidden rounded-[24px] border border-[#eceef4] bg-white">
|
||||
<div className="overflow-x-auto rounded-[24px] border border-[#eceef4] bg-white">
|
||||
{loading ? (
|
||||
<div className="flex items-center justify-center gap-2 py-16 text-[#667085]">
|
||||
<Loader2 className="h-5 w-5 animate-spin" />
|
||||
|
||||
@@ -52,7 +52,7 @@ export default function DocumentsPage() {
|
||||
|
||||
return (
|
||||
<IdShell active="/documents" wide>
|
||||
<h1 className="text-3xl font-medium tracking-tight">Документы</h1>
|
||||
<h1 className="text-2xl font-medium tracking-tight sm:text-3xl">Документы</h1>
|
||||
<p className="mt-1 text-sm text-[#667085]">Храните документы и заполняйте формы — ID подставит данные там, где вы разрешите.</p>
|
||||
|
||||
<div className="mt-6 overflow-hidden rounded-[28px] bg-[linear-gradient(135deg,#fff4f4,#fff8ef)] p-5">
|
||||
|
||||
@@ -19,7 +19,7 @@ export default function FamilyGroupPage({ params }: { params: Promise<{ groupId:
|
||||
const { groupId } = use(params);
|
||||
|
||||
return (
|
||||
<IdShell active="/family" wide>
|
||||
<IdShell active="/family" fullBleed>
|
||||
<FamilyGroupPageContent groupId={groupId} />
|
||||
</IdShell>
|
||||
);
|
||||
|
||||
@@ -65,12 +65,12 @@ export default function FamilyPage() {
|
||||
return (
|
||||
<IdShell active="/family" wide>
|
||||
<p className="text-sm text-[#667085]">Семья</p>
|
||||
<h1 className="text-4xl font-medium tracking-tight">Семейный доступ</h1>
|
||||
<p className="mt-2 text-[#667085]">Приглашайте близких, общайтесь в чатах и управляйте семейной группой.</p>
|
||||
<h1 className="text-2xl font-medium tracking-tight sm:text-4xl">Семейный доступ</h1>
|
||||
<p className="mt-2 text-sm text-[#667085] sm:text-base">Приглашайте близких, общайтесь в чатах и управляйте семейной группой.</p>
|
||||
|
||||
<div className="mt-8 flex gap-3">
|
||||
<Input value={name} onChange={(event) => setName(event.target.value)} placeholder="Название семьи" />
|
||||
<Button onClick={() => void createGroup()} disabled={creating || !name.trim()}>
|
||||
<div className="mt-6 flex flex-col gap-3 sm:mt-8 sm:flex-row">
|
||||
<Input value={name} onChange={(event) => setName(event.target.value)} placeholder="Название семьи" className="min-w-0 flex-1" />
|
||||
<Button className="shrink-0" onClick={() => void createGroup()} disabled={creating || !name.trim()}>
|
||||
{creating ? 'Создаём...' : (<><Plus className="h-4 w-4" />Создать</>)}
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
@@ -22,6 +22,11 @@ body {
|
||||
background: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
html {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.rdp-root {
|
||||
|
||||
@@ -335,7 +335,7 @@ export default function SecurityPage() {
|
||||
return (
|
||||
<IdShell active="/security">
|
||||
<p className="text-sm text-[#667085]">Безопасность</p>
|
||||
<h1 className="text-4xl font-medium tracking-tight">Устройства</h1>
|
||||
<h1 className="text-2xl font-medium tracking-tight sm:text-4xl">Устройства</h1>
|
||||
<p className="mt-2 max-w-[460px] text-base">На них вы вошли в ID и получаете уведомления безопасности от сервисов</p>
|
||||
|
||||
<div className="mt-8 space-y-2">
|
||||
|
||||
Reference in New Issue
Block a user