summaryrefslogtreecommitdiff
path: root/src/components/Input.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Input.module.scss')
-rw-r--r--src/components/Input.module.scss28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/components/Input.module.scss b/src/components/Input.module.scss
deleted file mode 100644
index 44a686c..0000000
--- a/src/components/Input.module.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-.input {
- -webkit-appearance: none;
- background-color: var(--color-input-bg);
- background-image: none;
- border-radius: 8px;
- border: 1px solid var(--color-input-border);
- box-sizing: border-box;
- color: inherit;
- display: inline-block;
- font-size: inherit;
- height: 35px;
- outline: none;
- padding: 0 15px;
- width: 100%;
- font-size: small;
- transition: border-color 0.2s ease, box-shadow 0.2s ease;
-}
-
-.input:focus {
- border-color: var(--color-focus-blue);
- box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
-}
-
-input::-webkit-outer-spin-button,
-input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- margin: 0;
-}