vec: Hide /home/{user} text on smaller screens

Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
This commit is contained in:
Harsh Shandilya 2018-07-16 22:53:57 +05:30
parent 1c3dc743f2
commit 9bc4919919
2 changed files with 9 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<ul>
{{ $title := lower .Title }}
{{ $section := lower .Section }}
<li class="pull-left {{ if .IsHome }}current{{ end }}">
<li class="pull-left header_item {{ if .IsHome }}current{{ end }}">
<a href="{{ .Site.BaseURL }}">/home/{{ lower .Site.Params.Username}}</a>
</li>
{{ range .Site.Menus.main }}

View File

@ -501,4 +501,12 @@ footer .footer-info {
.icons{
font-size:2em
}
@media screen and (max-width: 600px) {
.header_item {
visibility: hidden;
display: none;
}
}
/*# sourceMappingURL=vec.css.map */