dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_hugo-coder
mirror of
https://github.com/luizdepra/hugo-coder.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
Enable RTL layout by providing 'rtl = true' in the config (#72)
Khosrow Moossavi
01.18.2018
42d75aefe4529d94480d1cab4df1e5f725e4d072
[external-software/github_gohugo_theme_hugo-coder.git]
/
assets
/
scss
/
_content_rtl.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
body.rtl {
.list {
ul {
li {
span {
text-align: left;
margin-left: 3.0rem;
margin-right: 0;
@media only screen and (max-device-width : 768px) {
text-align: right;
}
}
}
}
}
}