-
Notifications
You must be signed in to change notification settings - Fork 756
Open
Labels
Description
Usually, an app/website design will place main CTAs at a place that can be reached easily on a smartphone using the thumb. Usually on the bottom right, however, this could be problematic for left-handed people.
Idea
It would be nice to have the possiblity to adapt websites/apps depending on left/right handed user preference @media prefers-hand: right/left/no-preference (default), which would allow to easily customize interfaces.
Example
.mySuperCTA {
position: fixed;
right: 0;
bottom: 0;
}
@media prefers-hand: right {
.mySuperCTA {
right: auto;
left: 0;
}
}Ressources
- https://www.smashingmagazine.com/2018/02/comprehensive-guide-to-mobile-app-design/ (also source for images)
rlskoeser, mfru, GarethChetwood, jwarby, RemyyB and 17 morerlskoeser, Yiin, uldo, wallythewebdev, terrehbyte and 7 more

