Created
November 1, 2019 09:44
-
-
Save slaffko1/cb5bed10bd632fe5f8f653762a97f07c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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; | |
| } | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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