Skip to content

Instantly share code, notes, and snippets.

@lunaroja
Created March 19, 2015 22:18
Show Gist options
  • Save lunaroja/99b1b19146a50e93b0ea to your computer and use it in GitHub Desktop.
Save lunaroja/99b1b19146a50e93b0ea to your computer and use it in GitHub Desktop.
Change BrowserSync Notification Styles
// 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