refacto textarea css
This commit is contained in:
parent
205e1f0580
commit
0de484983f
@ -9,18 +9,15 @@
|
|||||||
"@Components": "./dist/front/Components/*",
|
"@Components": "./dist/front/Components/*",
|
||||||
"@Themes": "./dist/front/Themes/*",
|
"@Themes": "./dist/front/Themes/*",
|
||||||
"@Stores": "./dist/front/Stores/*",
|
"@Stores": "./dist/front/Stores/*",
|
||||||
"@FrontServices": "./dist/front/services/*",
|
"@FrontServices": "./dist/front/Services/*",
|
||||||
"@Pages": "./dist/pages",
|
"@Pages": "./dist/pages",
|
||||||
"@Components": "./dist/front/components",
|
|
||||||
"@Common": "./dist/common",
|
"@Common": "./dist/common",
|
||||||
"@Services": "./dist/common/services",
|
"@Services": "./dist/common/services",
|
||||||
"@Entries": "./dist/common/entries",
|
"@Entries": "./dist/common/entries",
|
||||||
"@Common": "./dist/common",
|
|
||||||
"@Config": "./dist/common/config",
|
"@Config": "./dist/common/config",
|
||||||
"@Entities": "./dist/common/entities",
|
"@Entities": "./dist/common/entities",
|
||||||
"@System": "./dist/common/system",
|
"@System": "./dist/common/system",
|
||||||
"@ControllerPattern": "./dist/common/system/controller-pattern",
|
"@ControllerPattern": "./dist/common/system/controller-pattern"
|
||||||
"@Front": "./dist/front/*"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "next build && tsc",
|
"build": "next build && tsc",
|
||||||
|
@ -76,12 +76,12 @@
|
|||||||
|
|
||||||
~ .fake-placeholder {
|
~ .fake-placeholder {
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
top: 35%;
|
top: -12px;
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background: $white;
|
background: $white;
|
||||||
transform: translateY(-35px);
|
// transform: translateY(-35px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
@import "@Themes/constants.scss";
|
||||||
|
|
||||||
|
.root {
|
||||||
|
}
|
13
src/front/Components/DesignSystem/LogIn/index.tsx
Normal file
13
src/front/Components/DesignSystem/LogIn/index.tsx
Normal file
@ -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<IProps, IState> {
|
||||||
|
public override render(): JSX.Element {
|
||||||
|
return <div className={classes["root"]}></div>;
|
||||||
|
}
|
||||||
|
}
|
@ -9,7 +9,6 @@ import HeaderLink from "@Front/Components/DesignSystem/Header/HeaderLink";
|
|||||||
import CheckBox from "@Front/Components/DesignSystem/CheckBox";
|
import CheckBox from "@Front/Components/DesignSystem/CheckBox";
|
||||||
import ToolTip from "@Front/Components/DesignSystem/ToolTip";
|
import ToolTip from "@Front/Components/DesignSystem/ToolTip";
|
||||||
import RadioBox from "@Front/Components/DesignSystem/RadioBox";
|
import RadioBox from "@Front/Components/DesignSystem/RadioBox";
|
||||||
// import Input from "@Front/Components/DesignSystem/Input";
|
|
||||||
import InputField from "@Front/Components/DesignSystem/Form/Elements/InputField";
|
import InputField from "@Front/Components/DesignSystem/Form/Elements/InputField";
|
||||||
|
|
||||||
type IState = {
|
type IState = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user