Created
March 19, 2015 22:18
-
-
Save lunaroja/99b1b19146a50e93b0ea to your computer and use it in GitHub Desktop.
Change BrowserSync Notification Styles
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
// https://github.com/BrowserSync/browser-sync/issues/141 | |
browserSync({ | |
notify: { | |
styles: [ | |
'display: none; ', | |
'padding: 6px 15px 3px;', | |
'position: fixed;', | |
'font-size: 0.8em;', | |
'z-index: 9999;', | |
'left: 0px;', | |
'bottom: 0px;', | |
'color: rgb(74, 74, 74);', | |
'background-color: rgb(17, 17, 17);', | |
'color: rgb(229, 229, 229);' | |
] | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment