The steps are now separated by margin, not padding, which removes jumpiness on hovering!
Fix Steps Hover Spacing by xav-ie
Details
Authorxav-ie
LicenseNo License
Categorytimothya
Created
Updated
Size378 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name fix steps hover
@version 20240305.01.47
@namespace ?
@description the steps are now separated by margin, not padding, which removes jumpiness
==/UserStyle== */
@-moz-document domain("timothya.com") {
div.border div.flex ul li {
margin-top: 0;
padding-top: 0.5px;
margin-bottom: 0;
padding-bottom: 0.5px;
}
}