Created
January 29, 2022 08:54
-
-
Save phatnguyenuit/b6f5603154114e5ba4ef2c426adcab5c to your computer and use it in GitHub Desktop.
How to build a React library with TypeScript - my-react-package hello/styles.module.scss
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
$with: 600px; | |
$height: 200px; | |
.helloScss { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
width: $with; | |
height: $height; | |
border: 1px solid red; | |
border-radius: 8px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment