summaryrefslogtreecommitdiff
path: root/src/components/Proxy.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Proxy.module.scss')
-rw-r--r--src/components/Proxy.module.scss32
1 files changed, 19 insertions, 13 deletions
diff --git a/src/components/Proxy.module.scss b/src/components/Proxy.module.scss
index 735c348..20cb494 100644
--- a/src/components/Proxy.module.scss
+++ b/src/components/Proxy.module.scss
@@ -1,22 +1,28 @@
-.Proxy {
+.proxy {
display: flex;
- align-items: center;
+ cursor: pointer;
- .name {
- flex: 1;
- // width: 100px;
- padding-left: 10px;
+ svg {
+ transition: transform 0.4s ease, color 0.4s ease;
+ }
+ &:hover {
+ svg {
+ transform: scale(1.1);
+ color: #aaa;
+ }
}
}
-.LatencyLabel {
+.left {
display: flex;
align-items: center;
- padding: 5px;
- border-radius: 5px;
- background: #e6a23c;
+ justify-content: center;
+}
- div:nth-child(2) {
- padding-left: 4px;
- }
+.right {
+ padding-left: 20px;
+}
+
+.proxyName {
+ margin: 10px 0;
}