From: James Date: Fri, 1 May 2015 02:16:07 +0000 (-0400) Subject: Fix borders on buttons from being clipped X-Git-Tag: v2.0.0~2^2~18^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F133%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-emails.git 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 --- 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;