From ec4043e4815b7c5a553c9c634644902f73359ac3 Mon Sep 17 00:00:00 2001
From: alexanderdavide <alexeble1998@gmail.com>
Date: Sat, 19 Feb 2022 14:38:43 +0000
Subject: [PATCH] refactor: display links in post content as info
---
assets/scss/partials/components/_post.scss | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/assets/scss/partials/components/_post.scss b/assets/scss/partials/components/_post.scss
index 2de9cc9..c828891 100644
--- a/assets/scss/partials/components/_post.scss
+++ b/assets/scss/partials/components/_post.scss
@@ -27,11 +27,23 @@
}
&__content {
+ a {
+ @include themed() {
+ color: t('info');
+ }
+ }
+
h1 {
text-transform: uppercase;
font-size: 3em;
letter-spacing: 1px;
line-height: 1;
+
+ a {
+ @include themed() {
+ color: t('primary');
+ }
+ }
}
h2 {
@@ -40,6 +52,12 @@
font-size: 2.6rem;
line-height: 1;
font-weight: 600;
+
+ a {
+ @include themed() {
+ color: t('primary');
+ }
+ }
}
h3 {
@@ -48,6 +66,12 @@
line-height: 1;
font-weight: 600;
font-size: 2.2rem;
+
+ a {
+ @include themed() {
+ color: t('primary');
+ }
+ }
}
ul,
--
Gitblit v1.10.0