summaryrefslogtreecommitdiff
path: root/src/components/Selection.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Selection.module.scss')
-rw-r--r--src/components/Selection.module.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/Selection.module.scss b/src/components/Selection.module.scss
new file mode 100644
index 0000000..ba47089
--- /dev/null
+++ b/src/components/Selection.module.scss
@@ -0,0 +1,23 @@
+.fieldset {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.input + .cnt {
+ border: 1px solid transparent;
+ border-radius: 8px;
+ cursor: pointer;
+ margin-right: 5px;
+ margin-bottom: 5px;
+}
+
+.input:focus + .cnt {
+ border-color: #387cec;
+}
+
+.input:checked + .cnt {
+ border-color: #387cec;
+}