refacto textarea css
This commit is contained in:
parent
205e1f0580
commit
0de484983f
@ -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",
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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 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 = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user