diff --git a/client/build/webpack.dev.conf.js b/client/build/webpack.dev.conf.js index 313c2e8..0dcf320 100755 --- a/client/build/webpack.dev.conf.js +++ b/client/build/webpack.dev.conf.js @@ -28,7 +28,7 @@ const devWebpackConfig = merge(baseWebpackConfig, { { from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') }, ], }, - hot: true, + // hot: true, contentBase: false, // since we use CopyWebpackPlugin. compress: true, host: HOST || config.dev.host, diff --git a/client/src/assets/semantic-helper.css b/client/src/assets/semantic-helper.css index 51f0bf5..c341a62 100644 --- a/client/src/assets/semantic-helper.css +++ b/client/src/assets/semantic-helper.css @@ -1,3 +1,7 @@ +/*body, h3, h2, h1, p { + color: #3d3d3d; +}*/ + .clickable { cursor: pointer; } @@ -6,5 +10,9 @@ font-family: 'Open Sans' !important; font-size: 1.3rem !important; background: white; - height: calc(100% - 177px); + height: 100%; + overflow: hidden; +} +.ui.white.button { + background: #FFF; } \ No newline at end of file diff --git a/client/src/components/InputNotes.vue b/client/src/components/InputNotes.vue index c985013..124e413 100644 --- a/client/src/components/InputNotes.vue +++ b/client/src/components/InputNotes.vue @@ -1,21 +1,49 @@