From 50da0231cfc3f7407d4151ea476371f661c3fed0 Mon Sep 17 00:00:00 2001 From: David Gay Date: Sun, 6 Jun 2021 00:56:48 -0400 Subject: Use display font for buttons --- CHANGELOG.md | 1 + app/javascript/stylesheets/overrides.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; -- cgit v1.2.3