Beste gebruik voor de iPhone action button voor me is het openen van mijn 2FA app. Wat bij jullie?
TIL: CSS trick to move a child behind it's parent. Did not need it in the end and used a clip-path instead.
.parent {
transform-style: preserve-3d;
}
.child {
transform: translateZ(-1px)
}