From 096fb4790d3c4b222564492a6bcdd4372820de89 Mon Sep 17 00:00:00 2001 From: z0ccc Date: Sat, 26 Jun 2021 18:25:26 -0400 Subject: [PATCH] Changed options html --- public/options.css | 14 ++++++++++++++ public/options.html | 11 ++++++----- src/components/popup.js | 1 - src/styles/popup.css | 0 4 files changed, 20 insertions(+), 6 deletions(-) create mode 100644 public/options.css delete mode 100644 src/styles/popup.css diff --git a/public/options.css b/public/options.css new file mode 100644 index 0000000..09d1cb4 --- /dev/null +++ b/public/options.css @@ -0,0 +1,14 @@ +.checkBoxWrap { + display: flex; + align-items: center; + margin: 0 0 12px 0; +} + +a { + color: #0079d3; + text-decoration: none; +} + +.optionText { + margin: 3px 3px 3px 4px; +} \ No newline at end of file diff --git a/public/options.html b/public/options.html index 50eb5f9..f71199a 100644 --- a/public/options.html +++ b/public/options.html @@ -1,15 +1,16 @@ + - -
+
Github: https://github.com/z0ccc/vytal-extension
+ \ No newline at end of file diff --git a/src/components/popup.js b/src/components/popup.js index 5741818..7367601 100644 --- a/src/components/popup.js +++ b/src/components/popup.js @@ -2,7 +2,6 @@ import * as React from 'react'; import * as ReactDOM from 'react-dom'; import App from './App'; -import '../styles/popup.css'; const mountNode = document.getElementById('popup'); ReactDOM.render(, mountNode); diff --git a/src/styles/popup.css b/src/styles/popup.css deleted file mode 100644 index e69de29..0000000