removed comments
This commit is contained in:
@@ -1,11 +1,6 @@
|
||||
import React from 'react'
|
||||
|
||||
const backdrop = ({ toggleBackdrop, show }) =>
|
||||
show ? (
|
||||
<div
|
||||
onClick={toggleBackdrop}
|
||||
className={`backdrop ${show ? 'hideB' : ''}`}
|
||||
></div>
|
||||
) : null
|
||||
show ? <div onClick={toggleBackdrop} className='backdrop'></div> : null
|
||||
|
||||
export default backdrop
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user