diff options
author | Jordan <me@jordan.im> | 2021-03-05 10:35:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 10:35:38 -0700 |
commit | 367ba89a03ab128e83a72ac15244d949b5ea1a96 (patch) | |
tree | 8caffcae3beed145d51f7959126eb098d29b46da | |
parent | a164fd4aad6406900de2bc443e31e580b46550fc (diff) | |
parent | 83394fd538bca2f24cddcb49a7ede5a06562b636 (diff) | |
download | crane-367ba89a03ab128e83a72ac15244d949b5ea1a96.tar.gz crane-367ba89a03ab128e83a72ac15244d949b5ea1a96.zip |
Merge pull request #2 from msingh45/patch-2
make dl button same size as select
-rw-r--r-- | templates/admin.html | 2 | ||||
-rw-r--r-- | templates/layout.html | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/templates/admin.html b/templates/admin.html index 697b391..1c0f0ab 100644 --- a/templates/admin.html +++ b/templates/admin.html @@ -31,7 +31,7 @@ {{ end }} {{ end }} </select> - <input class='btn' type="submit" value="Download" /> + <input class="btn btn-download" type="submit" value="Download" /> </form> </td> </tr> 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 { |