From e92403bff7ee9b0260e49ba915ebadf07c7978f0 Mon Sep 17 00:00:00 2001
From: alexanderdavide <alexeble1998@gmail.com>
Date: Sun, 20 Feb 2022 16:23:50 +0000
Subject: [PATCH] feat: reduce font size
---
assets/scss/partials/components/_footer.scss | 18 +++++++++++++-----
1 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/assets/scss/partials/components/_footer.scss b/assets/scss/partials/components/_footer.scss
index b394b53..91d8efc 100644
--- a/assets/scss/partials/components/_footer.scss
+++ b/assets/scss/partials/components/_footer.scss
@@ -1,7 +1,7 @@
.footer {
- clear: both;
+ $font-size-footer: 1.4rem;
+
text-align: center;
- font-size: 1rem;
margin: 0 auto;
bottom: 0;
width: 100%;
@@ -16,9 +16,17 @@
justify-content: center;
}
- &__item:not(:first-of-type)::before {
- content: '\00B7';
- padding: 4px;
+ &__item {
+ font-size: $font-size-footer;
+
+ &:not(:first-of-type)::before {
+ content: '\00B7';
+ padding: 4px;
+ }
+
+ a {
+ font-size: $font-size-footer;
+ }
}
&__sidebar {
--
Gitblit v1.10.0