From 9469c76a23868acfdc15469cef0d0939c50a14c6 Mon Sep 17 00:00:00 2001 From: evgeniywas Date: Wed, 12 Jul 2023 21:50:35 +0100 Subject: [PATCH] RC-8: add global class --- src/styles/app-components.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/styles/app-components.css b/src/styles/app-components.css index db1004b..df34b27 100644 --- a/src/styles/app-components.css +++ b/src/styles/app-components.css @@ -10,3 +10,22 @@ @import 'prism.css'; @tailwind components; + +@layer components { + .bullet { + position: relative; + padding-left: 30px; + } + + .bullet::before { + content: ''; + position: absolute; + transform: translateY(50%); + left: 0; + display: inline-block; + width: 10px; + height: 10px; + background-color: #4d53ff; + border-radius: 50%; + } +}