Frontend Mentor - Social links profile solution

This is a solution to the Social links profile challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • See hover and focus states for all interactive elements on the page

Links

My process

Built with

  • SCSS
  • Mobile-first workflow

What I learned

I learned hwo we can start scss/sass compiler using terminal also how we can make responsive using mixins.

@mixin media-lg {
  @media screen and (min-width: 1024px) {
    @content;
  }
}
@include media-lg{........}

Author