diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2021-10-16 15:56:58 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2021-10-16 15:56:58 -0400 |
commit | 8f71df8341224a0898984a9bc67005fdbea9ee30 (patch) | |
tree | 72d04be78079189702fd641d7dd7dcdb5dd3f7f7 | |
parent | c05a6e85325e9c2259a4d50485ecdc4baf2cae14 (diff) |
[Index] margins on buttons
-rw-r--r-- | index.html | 4 | ||||
-rw-r--r-- | styles/home/base.css | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -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; } |