philschatz / puzzlescript

:video_game: Play Accessible PuzzleScript games in your terminal or embed them
https://philschatz.com/puzzlescript/
28 stars 11 forks source link

Provide a smoother experience for iOS installs #149

Open philschatz opened 5 years ago

philschatz commented 5 years ago

See https://www.netguru.com/codestories/few-tips-that-will-make-your-pwa-on-ios-feel-like-native

image

specifically, something like this to make the popup point to the button in safari:

.popup-pointer {
    display: block;
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    right: -10px;
    bottom: 10px;
    background-color: inherit;
    transform: translateX(-6px) rotate(45deg);
    pointer-events: none;
}