Authosaurus / ux-project

Project for UX week
0 stars 0 forks source link

Transition in wrong place in CSS to take effect #74

Closed jsms90 closed 7 years ago

jsms90 commented 7 years ago
li {
      height: 25px;
      padding:0px;
      display: inline-block;
      transition: 0.3s;
      padding-top: 2%;
      text-align: center;

      a {
        text-decoration: none;
        color:$black;
        opacity: 1;

        &:hover {
          opacity: 0.5;
        }
      }
    }

Just move transition from li to a