From d12d1045705a513ccfe644a2821767128a814968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Sim=C3=B5es?= Date: Thu, 5 Oct 2023 15:13:04 -0300 Subject: [PATCH] Fix bullet hover radius Bullet outline became squared when you hover bullet with mouse. This commit makes a simple fix on the bullet wrapper border-radius. --- custom.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/custom.css b/custom.css index a07fd4b..fcf0f85 100644 --- a/custom.css +++ b/custom.css @@ -560,6 +560,9 @@ html[data-theme="light"] .cm-s-solarized.cm-s-dark .CodeMirror-gutters { transform: translate(1px, -1px); /* align-items: end; */ } +.bullet-link-wrap { + border-radius:20px; +} /* Block bullet path in nested block only */ .ls-block .bullet { background-color: var(--ls-block-bullet-active-color);