From 070b1cd541cb8a60755a3c5244af00bca6ccaf51 Mon Sep 17 00:00:00 2001 From: Thatcher Peskens Date: Wed, 8 May 2013 12:13:31 -0700 Subject: [PATCH] Added a line to css to make sure th woul align left. --- docs/theme/docker/static/css/main.css | 4 ++++ docs/theme/docker/static/css/main.less | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/docs/theme/docker/static/css/main.css b/docs/theme/docker/static/css/main.css index 3948acc55d..0629efeb48 100755 --- a/docs/theme/docker/static/css/main.css +++ b/docs/theme/docker/static/css/main.css @@ -330,3 +330,7 @@ section.header { @media (max-width: 480px) { } +/* Misc fixes */ +table th { + text-align: left; +} diff --git a/docs/theme/docker/static/css/main.less b/docs/theme/docker/static/css/main.less index 69f53f9e1b..50c8fe6b4b 100644 --- a/docs/theme/docker/static/css/main.less +++ b/docs/theme/docker/static/css/main.less @@ -449,4 +449,9 @@ section.header { @media (max-width: 480px) { +} + +/* Misc fixes */ +table th { + text-align: left; } \ No newline at end of file