Login screen for web and mobile built using React.
https://tuxrace.github.io/react-ad-login/
npm install
npm start
Open locally at http://localhost:3000
Username | Password |
---|---|
Johnsmith | password |
- React
- React Hooks
- Typescript
- Bootstrap
- SASS
SASS Variables
all sass variable are in variables.scss
-
$spacing
- value is 8
- If we need to add margin we multiply by * $spacing
- Example
padding-top: calc(#{spacing} * 3px)
will give us 24px
-
$gutter-bottom-size
- value is 12px.
- This is the margin bottom between divs
- Example
margin-bottom: $gutter-bottom-size