summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/javascript/stylesheets/overrides.css2
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;