summaryrefslogtreecommitdiff
path: root/src/components/Input.module.scss
blob: 021fe186b836e0a0935d65b66c033f92198e4ee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.input {
  -webkit-appearance: none;
  background-color: var(--color-input-bg);
  background-image: none;
  border-radius: 4px;
  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;
}

.input:focus {
  box-shadow: rgba(66, 153, 225, 0.6) 0px 0px 0px 3px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}