From 858b95d851db32d13a4bb58a68ad27f485e42d32 Mon Sep 17 00:00:00 2001 From: mlorb Date: Wed, 30 May 2018 13:58:16 +0200 Subject: [PATCH] fix align bullet with a file name --- app/assets/stylesheets/steps.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/assets/stylesheets/steps.scss b/app/assets/stylesheets/steps.scss index 3c68cec48..88938f0e3 100644 --- a/app/assets/stylesheets/steps.scss +++ b/app/assets/stylesheets/steps.scss @@ -16,3 +16,16 @@ } } } + +#steps { + // hack only for firefox + @-moz-document url-prefix() { + ul > li { + padding-top: 1px; + + a > p:first-child { + margin-top: -17px; + } + } + } +}