fixed blockquote styling & added support for remote development

This commit is contained in:
Adam Piontek 2021-07-08 12:40:34 -04:00
parent d635a1a700
commit 592c7a9a6e
2 changed files with 9 additions and 1 deletions

View file

@ -56,6 +56,10 @@ a {
} }
} }
} }
.wp-block-separator {
border-top: none !important;
border-bottom: none !important;
}
/* navbar menus */ /* navbar menus */
// nav.navbar ul.navbar-nav li.menu-item // nav.navbar ul.navbar-nav li.menu-item

View file

@ -128,13 +128,17 @@ if (process.env.SERVER) {
config.plugins.push( config.plugins.push(
new BrowserSyncPlugin( new BrowserSyncPlugin(
{ {
proxy: 'http://127.0.0.1:9764', proxy: 'https://dev1.73k.us',
files: [ files: [
'**/*.php', '**/*.php',
'**/*.scss' '**/*.scss'
], ],
port: 9765, port: 9765,
host: '172.22.1.2',
listen: '172.22.1.2',
notify: false, notify: false,
open: false,
ui: { port: 9760 }
} }
) )
) )