diff --git a/assets/css/app.scss b/assets/css/app.scss index 063552a..e4e3cb5 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -56,6 +56,10 @@ a { } } } +.wp-block-separator { + border-top: none !important; + border-bottom: none !important; +} /* navbar menus */ // nav.navbar ul.navbar-nav li.menu-item diff --git a/webpack.config.js b/webpack.config.js index b159321..4074919 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -128,13 +128,17 @@ if (process.env.SERVER) { config.plugins.push( new BrowserSyncPlugin( { - proxy: 'http://127.0.0.1:9764', + proxy: 'https://dev1.73k.us', files: [ '**/*.php', '**/*.scss' ], port: 9765, + host: '172.22.1.2', + listen: '172.22.1.2', notify: false, + open: false, + ui: { port: 9760 } } ) )