Skip to content

Commit

Permalink
fix(mobile): Site title collapses when menu too small
Browse files Browse the repository at this point in the history
  • Loading branch information
LordZardeck committed Jan 13, 2016
1 parent fd2ca27 commit 99e0da6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules.less
@@ -1 +1,2 @@
@import "modules/alerts";
@import "modules/alerts";
@import "modules/header";
18 changes: 18 additions & 0 deletions modules/header.less
@@ -0,0 +1,18 @@
@media (max-width: 600px) {
#header {
.header-inner {
display: flex;

.logo {
flex: 1;

a.title {
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}
}

0 comments on commit 99e0da6

Please sign in to comment.