Updated style to transform name to ~ on smaller screens (#45)

* Updated style to transform name to ~ on smaller screens

* Added Chip Senkbeil to contributors list
This commit is contained in:
Chip Senkbeil 2018-07-03 15:14:04 -05:00 committed by Luiz F. A. de Prá
parent 57ff857391
commit 9fdd4f2f4a
3 changed files with 15 additions and 1 deletions

View File

@ -132,6 +132,7 @@ Coder is licensed under the [MIT license](https://github.com/luizdepra/hugo-code
- [Vlad Ionescu](https://github.com/Vlaaaaaaad)
- [Niels Reijn](https://github.com/reijnn)
- [Harry Khanna](https://github.com/hkhanna)
- [Chip Senkbeil](https://github.com/chipsenkbeil)
## Special Thanks

File diff suppressed because one or more lines are too long

View File

@ -198,6 +198,19 @@ img {
}
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
a.navigation-title {
font-size: 0rem;
&::after {
content: '~';
font-size: 2.4rem;
text-align: center;
margin-left: -1.4rem;
}
}
}
.content {
flex: 1;
margin-top: 1.6rem;