diff options
| author | Haishan <[email protected]> | 2020-06-20 22:28:43 +0800 |
|---|---|---|
| committer | Haishan <[email protected]> | 2020-06-20 22:28:43 +0800 |
| commit | 632c6a37350c830902046546fc07ce764ca009a0 (patch) | |
| tree | ed90e7cef41865732dafe7de22e33a3a1c589927 /src/components/shared.module.css | |
| parent | 71a7d8d4c125a5751c94ecb10468994634286425 (diff) | |
feat: add a simple filter for proxy names
Diffstat (limited to 'src/components/shared.module.css')
| -rw-r--r-- | src/components/shared.module.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/shared.module.css b/src/components/shared.module.css new file mode 100644 index 0000000..7d7ba9b --- /dev/null +++ b/src/components/shared.module.css @@ -0,0 +1,19 @@ +.input { + -webkit-appearance: none; + background-color: var(--color-input-bg); + background-image: none; + border-radius: 20px; + border: 1px solid var(--color-input-border); + box-sizing: border-box; + color: #c1c1c1; + display: inline-block; + font-size: inherit; + outline: none; + padding: 8px 15px; + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + width: 100%; + + &:focus { + border: 1px solid var(--color-focus-blue); + } +} |
