Remove unsightly gap on the home page on mobile. (#828)

I made a last minute change to shrink the header height when on mobile,
but I forgot to compensate for that on the home page, which left a white
gap on the screen. Yuck.
This commit is contained in:
Martin Taillefer 2018-01-03 09:31:39 -08:00 committed by Shriram Rajagopalan
parent aab7fa27a8
commit 3d4bb9b9d3
1 changed files with 5 additions and 1 deletions

View File

@ -89,6 +89,10 @@ title: Istio
}
body {
padding-top: 5rem;
padding-top: 2.8rem;
@media (min-width: $bp-sm) {
padding-top: 5rem;
}
}
</style>