[Vuejs]-Build Spacing for Error Text into Input Group

0👍

Solved using David Weldon’s min-height suggestion. I was able to get rid of my margins, my final CSS is as follows:

  .tsny_field_error-text {
    font-family: "expo-sans-pro", sans-serif;
    color: #FF8787;
    min-height: 25px;
  }

Leave a comment