From d716d240560456c10bd8e0b434b86282ee546672 Mon Sep 17 00:00:00 2001 From: James Date: Thu, 30 Apr 2015 22:16:07 -0400 Subject: [PATCH] Fix borders on buttons from being clipped Set the box sizing on buttons to stop the border from making the element larger then 100% when on small devices --- css/ink.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/ink.css b/css/ink.css index 7345877b..25144802 100644 --- a/css/ink.css +++ b/css/ink.css @@ -438,6 +438,9 @@ table.tiny-button td, table.small-button td, table.medium-button td, table.large-button td { + box-sizing:border-box; + -moz-box-sizing:border-box; + -webkit-box-sizing:border-box; display: block; width: auto !important; text-align: center; -- 2.47.2