Skip to content

savaf/frontend_master_qr_code_component

Repository files navigation

Frontend Mentor - QR code component solution

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.

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

Screenshot

Screenshot Desktop Screenshot Mobile

Links

My process

Built with

  • Semantic HTML5 markup
  • Vue
  • Tailwind
  • Flexbox
  • Mobile-first workflow
  • Vue - JS library
  • Google Fonts

What I learned

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: [],
};

Useful resources

Author

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published