From b600665ba01786186314e2c4055f496daedd9204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9D=E3=83=BC=E3=83=AB=20=E3=82=A6=E3=82=A7=E3=83=83?= =?UTF-8?q?=E3=83=96?= Date: Wed, 20 Jun 2018 10:28:20 -0500 Subject: [PATCH] Fixed bullet alignment issue @grin found --- .../.vuepress/scss/pages/_documentation.scss | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/content/.vuepress/scss/pages/_documentation.scss b/content/.vuepress/scss/pages/_documentation.scss index 7ef0916..dc9fa52 100644 --- a/content/.vuepress/scss/pages/_documentation.scss +++ b/content/.vuepress/scss/pages/_documentation.scss @@ -18,12 +18,21 @@ position: relative; &::before { - top: 8px; left: -1.2rem; - - content: "\00B7"; - font-size: 3.5rem; + background-color: $black; + border-radius: 50%; + content: ""; line-height: 0; position: absolute; + + @media (min-width: 901px) { + width: 7px; height: 7px; + top: 14px; left: -1.05rem; + } + + @media (max-width: 900px) { + width: 6px; height: 6px; + top: 11px; left: -0.95rem; + } } }