summaryrefslogtreecommitdiff
path: root/src/components/Button.module.css
diff options
context:
space:
mode:
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 {