summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2021-10-16 15:56:58 -0400
committerKyle Gunger <kgunger12@gmail.com>2021-10-16 15:56:58 -0400
commit8f71df8341224a0898984a9bc67005fdbea9ee30 (patch)
tree72d04be78079189702fd641d7dd7dcdb5dd3f7f7
parentc05a6e85325e9c2259a4d50485ecdc4baf2cae14 (diff)
[Index] margins on buttons
-rw-r--r--index.html4
-rw-r--r--styles/home/base.css2
2 files changed, 4 insertions, 2 deletions
diff --git a/index.html b/index.html
index 519d1dc..78a5d53 100644
--- a/index.html
+++ b/index.html
@@ -41,8 +41,8 @@
<div id="themes">
</div>
<div>
- <button onclick="addTheme()" style="margin-right: 2px;">Add Theme</button>
- <button onclick="remTheme()" style="margin-left: 2px;">Remove Theme</button>
+ <button onclick="addTheme()">Add Theme</button>
+ <button onclick="remTheme()">Remove Theme</button>
</div>
<div id="prev" class="prev">
diff --git a/styles/home/base.css b/styles/home/base.css
index 87dcddd..bfd7b46 100644
--- a/styles/home/base.css
+++ b/styles/home/base.css
@@ -53,6 +53,8 @@ a, button {
transition-duration: 0.2s;
text-decoration: none;
+
+ margin: 5px;
}