Skip to content
Snippets Groups Projects
Commit d4201075 authored by Chris Garrity's avatar Chris Garrity
Browse files

Remove touch slop

parent c1dcbb09
No related branches found
No related tags found
No related merge requests found
@import "../../css/colors.css"; @import "../../css/colors.css";
@import "../../css/units.css"; @import "../../css/units.css";
/* the delete button has .25rem invisible 'slop' around the visible button /* wrapper to allow for touch slop if we decide to add it */
to make it easier to tap on a touch device */
.delete-button { .delete-button {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
overflow: hidden; /* Mask the icon animation */
width: 2rem;
height: 2rem;
user-select: none; user-select: none;
cursor: pointer; cursor: pointer;
transition: all 0.15s ease-out; transition: all 0.15s ease-out;
} }
.delete-button-visible { .delete-button-visible {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
overflow: hidden; /* Mask the icon animation */ overflow: hidden; /* Mask the icon animation */
width: 1.75rem; width: 1.75rem;
height: 1.75rem; height: 1.75rem;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment