diff --git a/package.json b/package.json index 37832e67..ce7b5cef 100644 --- a/package.json +++ b/package.json @@ -9,18 +9,15 @@ "@Components": "./dist/front/Components/*", "@Themes": "./dist/front/Themes/*", "@Stores": "./dist/front/Stores/*", - "@FrontServices": "./dist/front/services/*", + "@FrontServices": "./dist/front/Services/*", "@Pages": "./dist/pages", - "@Components": "./dist/front/components", "@Common": "./dist/common", "@Services": "./dist/common/services", "@Entries": "./dist/common/entries", - "@Common": "./dist/common", "@Config": "./dist/common/config", "@Entities": "./dist/common/entities", "@System": "./dist/common/system", - "@ControllerPattern": "./dist/common/system/controller-pattern", - "@Front": "./dist/front/*" + "@ControllerPattern": "./dist/common/system/controller-pattern" }, "scripts": { "build": "next build && tsc", diff --git a/src/front/Components/DesignSystem/Form/Elements/InputField/classes.module.scss b/src/front/Components/DesignSystem/Form/Elements/InputField/classes.module.scss index 05e585e4..12e0306b 100644 --- a/src/front/Components/DesignSystem/Form/Elements/InputField/classes.module.scss +++ b/src/front/Components/DesignSystem/Form/Elements/InputField/classes.module.scss @@ -76,12 +76,12 @@ ~ .fake-placeholder { z-index: 2; - top: 35%; + top: -12px; margin-left: 8px; padding: 0 16px; pointer-events: none; position: absolute; background: $white; - transform: translateY(-35px); + // transform: translateY(-35px); } } diff --git a/src/front/Components/DesignSystem/LogIn/classes.module.scss b/src/front/Components/DesignSystem/LogIn/classes.module.scss new file mode 100644 index 00000000..f68b3ab0 --- /dev/null +++ b/src/front/Components/DesignSystem/LogIn/classes.module.scss @@ -0,0 +1,4 @@ +@import "@Themes/constants.scss"; + +.root { +} diff --git a/src/front/Components/DesignSystem/LogIn/index.tsx b/src/front/Components/DesignSystem/LogIn/index.tsx new file mode 100644 index 00000000..05520628 --- /dev/null +++ b/src/front/Components/DesignSystem/LogIn/index.tsx @@ -0,0 +1,13 @@ +import React from "react"; +import classes from "./classes.module.scss"; + +type IProps = {}; +type IState = { + logged: boolean; +}; + +export default class Login extends React.Component { + public override render(): JSX.Element { + return
; + } +} diff --git a/src/front/Components/Layouts/DesignSystem/index.tsx b/src/front/Components/Layouts/DesignSystem/index.tsx index 660d68fc..c3ffb5de 100644 --- a/src/front/Components/Layouts/DesignSystem/index.tsx +++ b/src/front/Components/Layouts/DesignSystem/index.tsx @@ -9,7 +9,6 @@ import HeaderLink from "@Front/Components/DesignSystem/Header/HeaderLink"; import CheckBox from "@Front/Components/DesignSystem/CheckBox"; import ToolTip from "@Front/Components/DesignSystem/ToolTip"; import RadioBox from "@Front/Components/DesignSystem/RadioBox"; -// import Input from "@Front/Components/DesignSystem/Input"; import InputField from "@Front/Components/DesignSystem/Form/Elements/InputField"; type IState = {