Skip to content

Instantly share code, notes, and snippets.

@slaffko1
Created November 1, 2019 09:44
Show Gist options
  • Select an option

  • Save slaffko1/cb5bed10bd632fe5f8f653762a97f07c to your computer and use it in GitHub Desktop.

Select an option

Save slaffko1/cb5bed10bd632fe5f8f653762a97f07c to your computer and use it in GitHub Desktop.
.helper-mob {
display: none;
-ms-flex-direction: row;
flex-direction: row;
position: fixed;
left: 0;
bottom: 0;
right: 0;
width: 100%;
z-index: 10;
}
.helper-mob a {
display: block;
-ms-flex: 1 1 50%;
flex: 1 1 50%;
text-align: center;
padding: 5px 15px;
background: #3b3d3c;
color: #ffffff;
text-decoration: none;
font-size: 18px;
line-height: 1.3;
border: 1px solid rgba(255, 255, 255, 0.5);
height: auto;
box-sizing: border-box;
}
@media (max-width: 767px){
.helper-mob {
display: -ms-flexbox;
display: flex;
}
}
<div class="helper-mob">
<a class="btn btn-whatsapp" href="https://wa.me/55555">שלח הודעה</a>
<a class="btn btn-call" href="tel:+55555">התקשר אלינו</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment