feat: Restore BS icons, separate styles to modules

This commit is contained in:
daudix-UFO
2024-01-13 17:15:18 +03:00
parent 75f18e625e
commit 4addfec36e
22 changed files with 2482 additions and 385 deletions

34
sass/_post-nav.scss Normal file
View File

@ -0,0 +1,34 @@
.post-nav {
display: flex;
.post-nav-item {
width: 50%;
text-decoration: none;
&:hover .post-title {
color: var(--primary-color);
}
&:nth-child(2n + 1) {
padding-left: 0;
padding-right: 1rem;
}
&:nth-child(2n) {
text-align: right;
padding-left: 1rem;
padding-right: 0;
}
.nav-arrow {
font-weight: 400;
color: var(--fg-muted-5);
margin-bottom: 0.5rem;
}
.post-title {
color: var(--fg-color);
transition: var(--transition);
}
}
}