advanced-css-course icon indicating copy to clipboard operation
advanced-css-course copied to clipboard

079 lesson at 04:50 - display: property is overridden

Open hazartilirot opened this issue 4 years ago • 1 comments

Can I ask a question? In the following block display is used twice. Is it correct? I've found VS Code most of the time doesn't highlight some peculiarities like display property in the video....

  &__link,
  &__visited {
    color: var(--color-grey-light-1);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 1.5rem 3rem;
    
    display: flex; 
    align-items: center;
  
  }

hazartilirot avatar Nov 13 '20 08:11 hazartilirot

display: block; should not be there

bzaman avatar Apr 25 '23 17:04 bzaman