MHF CSS Guide
CSS in JS
// DO NOT DO THIS
<button className="btn" style={{margin: '10px'}} />// DO NOT DO THIS... most of the time
<button className={styles.btn} />// CORRECT!
<button className="btn" />
<style jsx>{`.btn {...}`}</style>Styled JSX
Using the library
<style jsx>{``}</style>Writing CSS
Scoping CSS
Last updated
Was this helpful?