This is a solution to the QR code component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Note: Delete this note and update the table of contents based on what sections you keep.
- Solution URL: Add solution URL here
- Live Site URL: Add live site URL here
- Semantic HTML5 markup
- Vue
- Tailwind
- Flexbox
- Mobile-first workflow
- Vue - JS library
- Google Fonts
Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.
To see how you can add code snippets, see below:
I learn how to setup tailwind a use custom metrics and how use it in css code
<h3 class="
font-sans
font-bold
text-navy-dark
text-[22px]
leading-7
">Improve your front-end skills by building projects</h3>
<p
class="
font-sans
text-base
text-grey
leading-[19px]
mt-2
"
>
Scan the QR code to visit Frontend Mentor and take your coding skills
to the next level
</p>
body {
@apply bg-grey-light;
}
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
blue: "#2C7DFA",
'blue-shade': "#3685FF",
'navy-dark': "#1F314F",
grey: "#7D889E",
'grey-light': "#D5E1EF",
white: "#FFFFFF",
},
fontSize: {
base: "15px",
},
fontFamily: {
sans: ["Oufit", ...defaultTheme.fontFamily.sans],
}
},
},
plugins: [],
};