diff options
author | msingh45 <msingh45@asu.edu> | 2021-03-04 23:41:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 23:41:13 -0700 |
commit | bb4624b1b73d48e96e3c26554a9f756b929c34d4 (patch) | |
tree | b905abaafd858c09c726936314212ee5497405b9 | |
parent | a164fd4aad6406900de2bc443e31e580b46550fc (diff) | |
download | crane-bb4624b1b73d48e96e3c26554a9f756b929c34d4.tar.gz crane-bb4624b1b73d48e96e3c26554a9f756b929c34d4.zip |
Added padding fix for download button
Ensures styling consistency and cohesion
-rw-r--r-- | templates/layout.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/templates/layout.html b/templates/layout.html index ae89ff1..df61c42 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -58,8 +58,14 @@ div#crane .btn { display: inline; background: #e9ecef; border: #343a40 1px solid; - padding: 2px 8px; - border-radius: 0; + padding: 2px 8px; + border-radius: 0; +} + +.btn-download +{ + padding-top: 3px; + padding-bottom: 3px; } div#crane table { |