From af713073630a6bd2e2dfc80250492d2e2831cfa5 Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 23 Aug 2014 10:41:48 +1000 Subject: [PATCH] Add 10px margin for buttons in mobile --- app/assets/stylesheets/mobile.scss | 1 + app/assets/stylesheets/mobile/buttons.scss | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 app/assets/stylesheets/mobile/buttons.scss diff --git a/app/assets/stylesheets/mobile.scss b/app/assets/stylesheets/mobile.scss index 84549f273..c3c022763 100644 --- a/app/assets/stylesheets/mobile.scss +++ b/app/assets/stylesheets/mobile.scss @@ -2,6 +2,7 @@ /* @import "mobile/*"; TODO: get this working again */ +@import "mobile/buttons"; @import "mobile/alert"; @import "mobile/banner"; @import "mobile/compose"; diff --git a/app/assets/stylesheets/mobile/buttons.scss b/app/assets/stylesheets/mobile/buttons.scss new file mode 100644 index 000000000..d3f166f1c --- /dev/null +++ b/app/assets/stylesheets/mobile/buttons.scss @@ -0,0 +1,3 @@ +.btn { + margin-right: 10px; +}