This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.app{ | |
min-height: 100vh; | |
background-color: #fafafa; | |
width: 100%; | |
position: relative; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styles from './App.module.css' | |
import HeroSection from './components/HeroSection/HeroSection'; | |
import Navbar from './components/Navbar/Navbar'; | |
function App() { | |
return ( | |
<div className={styles.app}> | |
<Navbar /> | |
<HeroSection /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Import the styles in a JavaScript file | |
import styles from './Card.module.css' | |
//use it as an object | |
<div class={styles.card}> | |
{/* Code related to card */} | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.card{ | |
/* Styles related to the card */ | |
} |