diff --git a/src/pages/Popup/DebugSettings.js b/src/pages/Popup/DebugSettings.js index f168c8b..2ac7baa 100644 --- a/src/pages/Popup/DebugSettings.js +++ b/src/pages/Popup/DebugSettings.js @@ -14,7 +14,6 @@ const DebugSettings = ({ type, title, ip, profile, setProfile }) => { chrome.storage.sync.set({ [type]: ipTypeValue }) } } else if (profile === 'custom') { - console.log(2) chrome.storage.sync.get([type], (result) => { console.log(type) console.log(result) diff --git a/src/pages/Popup/Popup.jsx b/src/pages/Popup/Popup.jsx index 60bcc9c..5a7781e 100644 --- a/src/pages/Popup/Popup.jsx +++ b/src/pages/Popup/Popup.jsx @@ -130,7 +130,7 @@ const Popup = () => {
diff --git a/src/pages/Popup/UserAgentSettings.js b/src/pages/Popup/UserAgentSettings.js index 83479a0..ae5a42d 100644 --- a/src/pages/Popup/UserAgentSettings.js +++ b/src/pages/Popup/UserAgentSettings.js @@ -58,22 +58,32 @@ const UserAgentSettings = () => { />
- - + + ) } diff --git a/src/pages/Popup/index.css b/src/pages/Popup/index.css index 43a629b..a357621 100644 --- a/src/pages/Popup/index.css +++ b/src/pages/Popup/index.css @@ -18,3 +18,10 @@ body { margin: 0; font-family: 'Segoe UI', Tahoma, sans-serif; } + +input[type=checkbox] { + vertical-align: middle; + position: relative; + bottom: 1px; + margin: 0 4px 0 0 +}