diff options
| author | Haishan <[email protected]> | 2019-12-20 17:45:05 +0800 |
|---|---|---|
| committer | Haishan <[email protected]> | 2019-12-20 17:45:05 +0800 |
| commit | d81592ec970d207d4e37beb6c275ad6b77979e39 (patch) | |
| tree | 33aac796297864d95307f21d6a9aa790e3c33c09 /src/components/Proxy.module.css | |
| parent | 040c5de04a75415490f9c478d931b7707bfa2486 (diff) | |
feat: support proxy provider
Diffstat (limited to 'src/components/Proxy.module.css')
| -rw-r--r-- | src/components/Proxy.module.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/Proxy.module.css b/src/components/Proxy.module.css index 6f42ccf..2af1ce8 100644 --- a/src/components/Proxy.module.css +++ b/src/components/Proxy.module.css @@ -2,10 +2,15 @@ position: relative; padding: 5px; border-radius: 8px; + overflow: hidden; + + max-width: 280px; @media (--breakpoint-not-small) { + min-width: 150px; border-radius: 10px; padding: 10px; } + background-color: var(--color-bg-proxy-selected); &.now { background-color: var(--color-focus-blue); @@ -40,3 +45,12 @@ display: flex; align-items: flex-end; } + +.proxySmall { + .now { + outline: pink solid 1px; + } + width: 12px; + height: 12px; + border-radius: 8px; +} |
