diff --git a/src/components/UI/Backdrop.js b/src/components/UI/Backdrop.js index 8b1ebaa..23d8267 100644 --- a/src/components/UI/Backdrop.js +++ b/src/components/UI/Backdrop.js @@ -1,11 +1,6 @@ import React from 'react' const backdrop = ({ toggleBackdrop, show }) => - show ? ( -
- ) : null + show ?
: null export default backdrop diff --git a/src/static/sass/layout/_header.scss b/src/static/sass/layout/_header.scss index 58656c8..c0625c5 100644 --- a/src/static/sass/layout/_header.scss +++ b/src/static/sass/layout/_header.scss @@ -1,8 +1,5 @@ .header { background-color: $color-background; - // grid-column: 1 / 13; - // height: 82vh; - // display: grid; position: relative; padding-top: 56.25%; @@ -143,7 +140,6 @@ } &--fadeBottom { - // z-index: 100000000000; position: absolute; bottom: 0; height: 10rem; diff --git a/webpack.config.js b/webpack.config.js index 867f160..75e9046 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -84,9 +84,6 @@ module.exports = () => { template: './src/index.html', filename: './index.html', }), - // new CopyWebpackPlugin({ - // patterns: [[ { from: 'src/static/images', to: 'static/images' }], - // }), new CopyWebpackPlugin({ patterns: [ { @@ -96,8 +93,6 @@ module.exports = () => { ], }), new MiniCssExtractPlugin({ - // Options similar to the same options in webpackOptions.output - // both options are optional filename: 'main.css', }), new CleanWebpackPlugin(),