responsively hide site heading during suggestions-mode

This commit is contained in:
Davor Spasovski 2012-11-09 16:49:38 -08:00
Родитель 11ea34a0d4
Коммит b45400e3b9
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -82,6 +82,9 @@
#search, #search-q {
width: 235px;
}
h1 {
display: none;
}
}
// This works between and desktop over 600px.
@ -131,4 +134,7 @@
bottom: inherit;
}
}
#site-header.suggestions h1 {
display: inline-block;
}
}