Skip to main content

Fix button length

Comments

2 comments

  • Ariel H.

    Hi Marc,

    Thank you for contacting us.

    Please try this:

    .mybutton {
      min-width: 180px;
    }

    /* Tablet */
    @media (max-width: 1024px) {
      .mybutton {
        min-width: 150px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .mybutton {
        min-width: 120px;
      }
    }

    You may adjust the min-width as needed.

    0
  • Marc Gustav Eberle

    Hi Ariel,

    works great.

    Thanx!!

    0

Please sign in to leave a comment.