I have the following CSS/SASS.
.socialMedia__button{
display:block;
text-align:center;
padding:10px;
border: 2px solid;
border-radius: 5px;
color:#fff;
width:100%;
.facebook {
background:#3c5b99;
}
.twitter {
background:#429aff;
}
}
The HTML is:
<p>
<a href="#" class="socialMedia__button facebook">Sign up with Facebook</a>
</p>
However, my HTML doesn't seem to recognise the facebook
part. Why is this?
Thank you