From 3bc3dd1ebaca0fedd1422b03e62d333fb20518d7 Mon Sep 17 00:00:00 2001 From: Aditya Thakral Date: Thu, 4 Mar 2021 04:49:52 -0500 Subject: [PATCH] Add a margin above the control buttons --- src/popup.ts | 2 +- static/popup.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/popup.ts b/src/popup.ts index c40a840..4ec63dd 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -77,7 +77,7 @@ function renderSettings( return [ $( "div", - {}, + { class: "control-container" }, models.map((model) => model.render()) ), models, diff --git a/static/popup.css b/static/popup.css index ca0ceb6..0022f2f 100644 --- a/static/popup.css +++ b/static/popup.css @@ -1,3 +1,7 @@ html { min-width: 300px; } + +.control-container { + margin-bottom: 20px; +}