Created
March 8, 2017 13:19
-
-
Save jonathanpath/2bc3f684bc7e2510b7c43f2caf52df36 to your computer and use it in GitHub Desktop.
Header title full width for bootstrap (mobile first style)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To get something like that:
