summaryrefslogtreecommitdiff
path: root/src/components/ProxyGroup.module.scss
diff options
context:
space:
mode:
authorHaishan <[email protected]>2019-01-02 22:33:05 +0800
committerHaishan <[email protected]>2019-01-02 22:33:05 +0800
commit761e25f1ea41195b4e58f9ad643a20acbc3f3cfe (patch)
treeb70d9d4c1e8832b7c7aca6e3312d1834b9fd03f2 /src/components/ProxyGroup.module.scss
parentbe029ded162f9bd88a81e9d8e03872f6facd4461 (diff)
style(proxies): tweak proxy hover style
Diffstat (limited to 'src/components/ProxyGroup.module.scss')
-rw-r--r--src/components/ProxyGroup.module.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/ProxyGroup.module.scss b/src/components/ProxyGroup.module.scss
index 43cbdaa..017f785 100644
--- a/src/components/ProxyGroup.module.scss
+++ b/src/components/ProxyGroup.module.scss
@@ -17,4 +17,12 @@
.proxy {
width: 300px;
padding: 10px 5px;
+ transition: transform 0.4s ease;
+ // transition: transform 0.4s ease, color 0.4s ease;
+ &.proxySelectable {
+ cursor: pointer;
+ &:hover {
+ transform: scale(1.1);
+ }
+ }
}