https://github.com/melvinaguilar/qr-code-component
This is a solution to the "QR Code Component" challenge on Frontend Mentor challenges.
https://github.com/melvinaguilar/qr-code-component
frontend frontend-mentor frontend-mentor-challenge frontend-mentor-challenges html html-css sass sass-mixins scss
Last synced: 5 months ago
JSON representation
This is a solution to the "QR Code Component" challenge on Frontend Mentor challenges.
- Host: GitHub
- URL: https://github.com/melvinaguilar/qr-code-component
- Owner: MelvinAguilar
- Created: 2022-09-26T16:30:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-09T14:57:18.000Z (over 2 years ago)
- Last Synced: 2024-12-06T02:09:53.924Z (5 months ago)
- Topics: frontend, frontend-mentor, frontend-mentor-challenge, frontend-mentor-challenges, html, html-css, sass, sass-mixins, scss
- Language: SCSS
- Homepage: https://qr-code-component-hdz.vercel.app/
- Size: 118 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frontend Mentor - QR code component solution

This is a solution to the [QR code component challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H). Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Links
- Solution URL: [QR Code Component (SASS + Flexbox) | Frontend Mentor](https://www.frontendmentor.io/solutions/qr-code-component-sass-flexbox-w20ntizjJs)
- Live Site URL: [https://qr-code-component-hdz.vercel.app/](https://qr-code-component-hdz.vercel.app/)## Table of contents
- [Overview](#overview)
- [The challenge](#the-challenge)
- [Screenshot](#screenshot)
- [My process](#my-process)
- [Built with](#built-with)
- [Author](#author)
- [Acknowledgments](#acknowledgments)## My process
### Built with
- Semantic HTML5 markup
- Flexbox
- [SASS](https://sass-lang.com/documentation/modules) - Sass modules### Useful resources
- [Material Design Box Shadows](https://codepen.io/sdthornton/pen/wBZdXq)
## Author
- Frontend Mentor - [@melvinaguilar](https://www.frontendmentor.io/profile/melvinaguilar)
## Acknowledgments
When using `sass` in order to build this solution
- Install `sass` if not yet installed:
```bash
npm install -g sass
```- Run build command from command line:
```bash
sass assets/sass/main.scss assets/css/style.css
```- If you want to edit the code and test, in the root folder of this repository, run this command from the command line:
```bash
sass --watch assets/sass/main.scss assets/css/style.css
```## File structure
```
.
├── assets
│ ├── css
│ │ ├── style.css
│ │ └── style.css.map
│ ├── images
│ │ ├── favicon-32x32.png
│ │ └── image-qr-code.png
│ └── sass
│ ├── abstract
│ │ ├── _mixins.scss
│ │ └── _variables.scss
│ ├── base
│ │ ├── _page.scss
│ │ └── _reset.scss
│ ├── component
│ │ ├── _attribution.scss
│ │ ├── _card.scss
│ │ └── _heading.scss
│ ├── layout
│ │ └── _main-section.scss
│ └── main.scss
├── design
│ ├── desktop-design.jpg
│ ├── desktop-preview.jpg
│ ├── mobile-design.jpg
│ └── screenshot.png
├── index.html
└── README.md
```