aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/unit-input/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/unit-input/index.scss')
-rw-r--r--ui/app/components/unit-input/index.scss44
1 files changed, 0 insertions, 44 deletions
diff --git a/ui/app/components/unit-input/index.scss b/ui/app/components/unit-input/index.scss
deleted file mode 100644
index 28c5bf6f0..000000000
--- a/ui/app/components/unit-input/index.scss
+++ /dev/null
@@ -1,44 +0,0 @@
-.unit-input {
- min-height: 54px;
- border: 1px solid #dedede;
- border-radius: 4px;
- background-color: #fff;
- color: #4d4d4d;
- font-size: 1rem;
- padding: 8px 10px;
- position: relative;
-
- input[type="number"] {
- -moz-appearance: textfield;
- }
-
- input[type="number"]::-webkit-inner-spin-button {
- -webkit-appearance: none;
- -moz-appearance: none;
- display: none;
- }
-
- input[type="number"]:hover::-webkit-inner-spin-button {
- -webkit-appearance: none;
- -moz-appearance: none;
- display: none;
- }
-
- &__input {
- color: #4d4d4d;
- font-size: 1rem;
- font-family: Roboto;
- border: none;
- outline: 0 !important;
- max-width: 22ch;
- }
-
- &__input-container {
- display: flex;
- align-items: center;
- }
-
- &--error {
- border-color: $red;
- }
-}