From 8ccc47294e213c44139d90e4971a6ae40ff4a74a Mon Sep 17 00:00:00 2001 From: Ariel Costas <94913521+arielcostas@users.noreply.github.com> Date: Mon, 5 Feb 2024 19:27:58 +0100 Subject: Refactor CSS imports and remove unused styles --- assets/css/markup/_index.scss | 1 + assets/css/markup/_render-heading.scss | 13 +++++++++++++ assets/css/markup/render-heading.scss | 13 ------------- 3 files changed, 14 insertions(+), 13 deletions(-) create mode 100644 assets/css/markup/_index.scss create mode 100644 assets/css/markup/_render-heading.scss delete mode 100644 assets/css/markup/render-heading.scss (limited to 'assets/css/markup') diff --git a/assets/css/markup/_index.scss b/assets/css/markup/_index.scss new file mode 100644 index 0000000..ead742e --- /dev/null +++ b/assets/css/markup/_index.scss @@ -0,0 +1 @@ +@import "_render-heading"; \ No newline at end of file diff --git a/assets/css/markup/_render-heading.scss b/assets/css/markup/_render-heading.scss new file mode 100644 index 0000000..4fa23a8 --- /dev/null +++ b/assets/css/markup/_render-heading.scss @@ -0,0 +1,13 @@ +main { + h1, h2, h3, h4, h5, h6 { + a { + color: var(--accent-1); + font-weight: 900; + text-decoration: none; + + &:hover { + text-decoration: underline; + } + } + } +} \ No newline at end of file diff --git a/assets/css/markup/render-heading.scss b/assets/css/markup/render-heading.scss deleted file mode 100644 index 4fa23a8..0000000 --- a/assets/css/markup/render-heading.scss +++ /dev/null @@ -1,13 +0,0 @@ -main { - h1, h2, h3, h4, h5, h6 { - a { - color: var(--accent-1); - font-weight: 900; - text-decoration: none; - - &:hover { - text-decoration: underline; - } - } - } -} \ No newline at end of file -- cgit v1.3