Some more fixing

This commit is contained in:
Kaan Barmore-Genç 2024-05-07 23:36:50 -05:00
parent 2a1f15896d
commit 4c609f6770
Signed by: kaan
GPG key ID: B2E280771CD62FCF
2 changed files with 8 additions and 3 deletions

View file

@ -109,6 +109,9 @@
.socials a { .socials a {
display: flex; display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
gap: 0.5rem; gap: 0.5rem;
background-color: $color-secondary; background-color: $color-secondary;
color: $color-secondary-text; color: $color-secondary-text;

View file

@ -54,13 +54,15 @@
> >
</div> </div>
<style> <style lang="scss">
@import '../../../vars';
/* Restore the color of everything under the post links, except the titles */ /* Restore the color of everything under the post links, except the titles */
.posts a { .posts a {
color: var(--color-text); color: var(--color-text);
} }
.posts a .post-title { .posts a .post-title {
color: var(--color-primary); color: $color-primary;
} }
time { time {
@ -77,7 +79,7 @@
.current-page { .current-page {
display: inline-block; display: inline-block;
font-weight: bolder; font-weight: bolder;
color: var(--color-primary); color: $color-primary;
cursor: unset; cursor: unset;
user-select: none; user-select: none;
padding: 0.5rem 1rem; padding: 0.5rem 1rem;