Form styles

This commit is contained in:
memeriau 2022-01-14 00:11:34 +01:00
parent b9f9cf5130
commit e140ef2535
4 changed files with 13 additions and 4 deletions

View File

@ -43,6 +43,7 @@ module.exports = {
devDependencies: true, devDependencies: true,
}, },
], ],
"import/prefer-default-export": "off",
"@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "off", "@typescript-eslint/no-var-requires": "off",

View File

@ -14,8 +14,6 @@
} }
input { input {
width: 100%; width: 100%;
border: 1px solid #333;
border-radius: 4px;
} }
} }

View File

@ -1,10 +1,19 @@
@import "./variables"; @import "./variables";
button { button {
padding: 5px 20px; padding: 7px 20px;
background-color: $color-orange; background-color: $color-orange;
border: 0; border: 0;
color: $color-white; color: $color-white;
border-radius: 14px; border-radius: 16px;
font-weight: bold; font-weight: bold;
cursor: pointer;
}
input[type="text"],
input[type="password"],
input[type="email"] {
padding: 4px 6px;
border: 1px solid #333;
border-radius: 4px;
} }

View File

@ -1,6 +1,7 @@
$color-white: #fff; $color-white: #fff;
$color-black: #000; $color-black: #000;
$color-orange: #ea4d0a; $color-orange: #ea4d0a;
$color-yellow: #fdd137;
$border-large: 4px solid $color-black; $border-large: 4px solid $color-black;
$border-thin: 2px solid $color-black; $border-thin: 2px solid $color-black;