From 2b87fb3942390c83874888f9dd9ba4e72f274cdc Mon Sep 17 00:00:00 2001 From: Jake Archibald Date: Sat, 20 Oct 2018 10:23:18 +0100 Subject: [PATCH] Copy setting button - still not happy with this --- src/components/Options/index.tsx | 8 +++----- src/components/Options/style.scss | 22 +++++++++++++++------- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/src/components/Options/index.tsx b/src/components/Options/index.tsx index a0f7aba0..def0ff32 100644 --- a/src/components/Options/index.tsx +++ b/src/components/Options/index.tsx @@ -213,15 +213,13 @@ export default class Options extends Component { - {/* -
-
- */}
diff --git a/src/components/Options/style.scss b/src/components/Options/style.scss index 9b7ee0ec..c06f57c1 100644 --- a/src/components/Options/style.scss +++ b/src/components/Options/style.scss @@ -66,13 +66,6 @@ $horizontalPadding: 15px; overflow-y: auto; } -.button { - composes: unbutton from '../../lib/util.scss'; - background: #151515; - border-radius: 4px; - color: #fff; -} - .results { display: grid; grid-template-columns: 1fr auto; @@ -121,3 +114,18 @@ $horizontalPadding: 15px; .size-decrease { color: #50e3c2; } + +.options-copy { + display: grid; + background: rgba(0, 0, 0, 0.9); + padding: 5px; +} + +.copy-button { + composes: unbutton from '../../lib/util.scss'; + background: #484848; + border-radius: 4px; + color: #fff; + text-align: left; + padding: 5px 10px; +}