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
// Device sizes | |
$phone: 599px; | |
$tablet-portrait: 600px; | |
$tablet-landscape: 900px; | |
$desktop: 1200px; | |
$desktop-big: 1800px; | |
// Media queries | |
@mixin for-phone-only { | |
@media (max-width: $phone) { |
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
const copyTextToClipboard = (textString) => { | |
const textarea = document.createElement('textarea') | |
textarea.value = textString | |
document.body.appendChild(textarea) | |
textarea.select() | |
document.execCommand('copy') | |
document.body.removeChild(textarea) | |
} |
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
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> |
OlderNewer