diff options
author | Sebastian <sebasjm@gmail.com> | 2021-11-08 13:12:44 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2021-11-08 13:15:03 -0300 |
commit | bc806e7b51bc3f786ccde6efcc9111b8da8bb438 (patch) | |
tree | 7332b89b47f70e7cc303af69c0939ce5769763d6 /packages/anastasis-webui/src/pages/home/AttributeEntryScreen.tsx | |
parent | 4dd5b75cfa3b6d7914f9f178cbaa0a51488ed1e8 (diff) |
remove aside transition to mobile
Diffstat (limited to 'packages/anastasis-webui/src/pages/home/AttributeEntryScreen.tsx')
-rw-r--r-- | packages/anastasis-webui/src/pages/home/AttributeEntryScreen.tsx | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.tsx b/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.tsx index f86994c97..86a2f08ee 100644 --- a/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.tsx +++ b/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.tsx @@ -1,13 +1,12 @@ -/* eslint-disable @typescript-eslint/camelcase */ import { UserAttributeSpec, validators } from "anastasis-core"; -import { Fragment, h, VNode } from "preact"; +import { isAfter, parse } from "date-fns"; +import { h, VNode } from "preact"; import { useState } from "preact/hooks"; -import { useAnastasisContext } from "../../context/anastasis"; -import { AnastasisClientFrame, withProcessLabel } from "./index"; -import { TextInput } from "../../components/fields/TextInput"; import { DateInput } from "../../components/fields/DateInput"; import { NumberInput } from "../../components/fields/NumberInput"; -import { isAfter, parse } from "date-fns"; +import { TextInput } from "../../components/fields/TextInput"; +import { useAnastasisContext } from "../../context/anastasis"; +import { AnastasisClientFrame, withProcessLabel } from "./index"; export function AttributeEntryScreen(): VNode { const reducer = useAnastasisContext() @@ -48,10 +47,10 @@ export function AttributeEntryScreen(): VNode { })} > <div class="columns" style={{ maxWidth: 'unset' }}> - <div class="column is-half"> + <div class="column"> {fieldList} </div> - <div class="column is-is-half" > + <div class="column" > <p>This personal information will help to locate your secret.</p> <h1 class="title">This stays private</h1> <p>The information you have entered here:</p> |