Skip to content

Commit 3bc3dd1

Browse files
committed
Add a margin above the control buttons
1 parent c6a3356 commit 3bc3dd1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/popup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function renderSettings(
7777
return [
7878
$(
7979
"div",
80-
{},
80+
{ class: "control-container" },
8181
models.map((model) => model.render())
8282
),
8383
models,

static/popup.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
html {
22
min-width: 300px;
33
}
4+
5+
.control-container {
6+
margin-bottom: 20px;
7+
}

0 commit comments

Comments
 (0)