diff options
author | David Gay <david@davidgay.org> | 2021-06-06 00:56:48 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-06 00:56:48 -0400 |
commit | 50da0231cfc3f7407d4151ea476371f661c3fed0 (patch) | |
tree | 014ad694fab9c82ce3111b4095416fe80a8d97ed | |
parent | b838c52d7895e7d1e3ac206c8ff530a11a3f5789 (diff) |
Use display font for buttons
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/javascript/stylesheets/overrides.css | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d0840be..0fb1127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file. - Adjusted chat box so scrollbar lines up with main box scrollbar. - Reduced footer (copyright) padding and made the rest of the content fill in that space. - Increased min height and max height of chat. +- Buttons now use the display font. ## [0.1.7.1] - 2021-06-05 diff --git a/app/javascript/stylesheets/overrides.css b/app/javascript/stylesheets/overrides.css index 1b5d5de..5f13d93 100644 --- a/app/javascript/stylesheets/overrides.css +++ b/app/javascript/stylesheets/overrides.css @@ -21,7 +21,7 @@ input:focus { } button, [type="button"], [type="reset"], [type="submit"] { - @apply py-1 px-2 cursor-pointer transition duration-100; + @apply py-1 px-2 cursor-pointer transition duration-100 text-display; } button:hover, [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover { @apply bg-gray-700 transition duration-100; |