From 568996ae73ffeac83f1f24a870c73bd1a02dad8f Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Sat, 25 Jul 2015 07:59:10 -0500 Subject: [PATCH] Shorten the padding declaration. A padding declaration of `8px 8px` is the same as just writing `8px` so use the shorter version --- app/assets/stylesheets/mobile.css.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/mobile.css.scss b/app/assets/stylesheets/mobile.css.scss index 8d3e25fd..630af263 100644 --- a/app/assets/stylesheets/mobile.css.scss +++ b/app/assets/stylesheets/mobile.css.scss @@ -295,7 +295,7 @@ div.note_wrapper p { } .btn { - padding: 8px 8px; + padding: 8px; border-radius: 5px; background-image: none; display: inline-block;