input label on focus top

PHOTO EMBED

Tue Apr 16 2024 12:14:06 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #css

label {
      font-family: $Josef;
      font-size: 1.5rem;
      line-height: 5.2rem;
      position: absolute;
      left: 22px;
      color: $black;
      z-index: 1;
      transition: transform .15s ease-out, font-size .15s ease-out;
    }

    &.focused {
      label {
        top: 0px;
        transform: translateY(5%);
        line-height: 1.5rem;
        font-size: 1.2rem;
        color: $black;
      }
    }
content_copyCOPY