This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
sophia.wtf/themes/hugo-coder/assets/scss/_content_rtl.scss
2022-11-03 21:23:41 -07:00

37 lines
543 B
SCSS

body.rtl {
.content {
.post {
.post-meta {
.posted-on {
margin-left: 1.5rem;
margin-right: 0;
}
}
.tags,
.categories {
i {
margin-left: 0.5rem;
margin-right: 0;
}
}
}
}
.list {
ul {
li {
.date {
text-align: left;
margin-left: 3rem;
margin-right: 0;
@media only screen and (max-width: 768px) {
text-align: right;
}
}
}
}
}
}