removed comments
This commit is contained in:
@@ -1,11 +1,6 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
const backdrop = ({ toggleBackdrop, show }) =>
|
const backdrop = ({ toggleBackdrop, show }) =>
|
||||||
show ? (
|
show ? <div onClick={toggleBackdrop} className='backdrop'></div> : null
|
||||||
<div
|
|
||||||
onClick={toggleBackdrop}
|
|
||||||
className={`backdrop ${show ? 'hideB' : ''}`}
|
|
||||||
></div>
|
|
||||||
) : null
|
|
||||||
|
|
||||||
export default backdrop
|
export default backdrop
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
.header {
|
.header {
|
||||||
background-color: $color-background;
|
background-color: $color-background;
|
||||||
// grid-column: 1 / 13;
|
|
||||||
// height: 82vh;
|
|
||||||
// display: grid;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-top: 56.25%;
|
padding-top: 56.25%;
|
||||||
|
|
||||||
@@ -143,7 +140,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--fadeBottom {
|
&--fadeBottom {
|
||||||
// z-index: 100000000000;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
height: 10rem;
|
height: 10rem;
|
||||||
|
|||||||
@@ -84,9 +84,6 @@ module.exports = () => {
|
|||||||
template: './src/index.html',
|
template: './src/index.html',
|
||||||
filename: './index.html',
|
filename: './index.html',
|
||||||
}),
|
}),
|
||||||
// new CopyWebpackPlugin({
|
|
||||||
// patterns: [[ { from: 'src/static/images', to: 'static/images' }],
|
|
||||||
// }),
|
|
||||||
new CopyWebpackPlugin({
|
new CopyWebpackPlugin({
|
||||||
patterns: [
|
patterns: [
|
||||||
{
|
{
|
||||||
@@ -96,8 +93,6 @@ module.exports = () => {
|
|||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
new MiniCssExtractPlugin({
|
new MiniCssExtractPlugin({
|
||||||
// Options similar to the same options in webpackOptions.output
|
|
||||||
// both options are optional
|
|
||||||
filename: 'main.css',
|
filename: 'main.css',
|
||||||
}),
|
}),
|
||||||
new CleanWebpackPlugin(),
|
new CleanWebpackPlugin(),
|
||||||
|
|||||||
Reference in New Issue
Block a user