Skip to content

Instantly share code, notes, and snippets.

@jonathanpath
Created March 8, 2017 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathanpath/2bc3f684bc7e2510b7c43f2caf52df36 to your computer and use it in GitHub Desktop.
Save jonathanpath/2bc3f684bc7e2510b7c43f2caf52df36 to your computer and use it in GitHub Desktop.
Header title full width for bootstrap (mobile first style)
.header-title {
@media (max-width: $screen-xs-max) {
width: 100%;
position: absolute;
left: 0;
text-align: center;
padding: 15px 60px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 18px;
line-height: 20px;
height: 50px;
}
@media (min-width: $screen-sm-min) {
display: none;
}
}
@jonathanpath
Copy link
Author

To get something like that:
screenshot 2017-03-08 14 19 31

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment