refacto textarea css

This commit is contained in:
OxSaitama 2023-02-27 10:43:21 +01:00
parent 205e1f0580
commit 0de484983f
5 changed files with 21 additions and 8 deletions

View File

@ -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",

View File

@ -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);
} }
} }

View File

@ -0,0 +1,4 @@
@import "@Themes/constants.scss";
.root {
}

View 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>;
}
}

View File

@ -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 = {