From 9b4c2bea7f4f7beff34c3f6716164e7559b9adbb Mon Sep 17 00:00:00 2001 From: Alec Rust Date: Wed, 9 Apr 2014 10:44:13 +0100 Subject: [PATCH] Add .text-center utility class I've personally found a very common use for this when developing with Ratchet. --- sass/base.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sass/base.scss b/sass/base.scss index 5d1d4e4..fee0c99 100644 --- a/sass/base.scss +++ b/sass/base.scss @@ -81,6 +81,9 @@ a { .content-padded { margin: $bar-side-spacing; } +.text-center { + text-align: center; +} .pull-left { float: left; }