summaryrefslogtreecommitdiff
path: root/src/components/Button.module.css
diff options
context:
space:
mode:
authorHaishan <[email protected]>2019-12-20 17:45:05 +0800
committerHaishan <[email protected]>2019-12-20 17:45:05 +0800
commitd81592ec970d207d4e37beb6c275ad6b77979e39 (patch)
tree33aac796297864d95307f21d6a9aa790e3c33c09 /src/components/Button.module.css
parent040c5de04a75415490f9c478d931b7707bfa2486 (diff)
feat: support proxy provider
Diffstat (limited to 'src/components/Button.module.css')
-rw-r--r--src/components/Button.module.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/Button.module.css b/src/components/Button.module.css
index 205bfe9..c232a66 100644
--- a/src/components/Button.module.css
+++ b/src/components/Button.module.css
@@ -24,6 +24,22 @@
font-size: 1em;
padding: 6px 12px;
}
+
+ &.plain {
+ border-radius: 100%;
+ padding: 0;
+ display: flex;
+ border-color: transparent;
+ background: none;
+ &:focus {
+ border-color: var(--color-focus-blue);
+ }
+ &:hover {
+ background: #387cec;
+ border: 1px solid #387cec;
+ color: #fff;
+ }
+ }
}
.withIconWrapper {