Skip to content

Instantly share code, notes, and snippets.

@the-j0k3r
Created March 5, 2020 11:51
Show Gist options
  • Save the-j0k3r/c74118a38c7e1cc5d048c0b4e018478b to your computer and use it in GitHub Desktop.
Save the-j0k3r/c74118a38c7e1cc5d048c0b4e018478b to your computer and use it in GitHub Desktop.
/* fixes alignment of color swatch to label
* fix causes setting-description to shift down fixed below */
.settings-view {
input[type="color"] {
margin: 0.313em 0 0 -5em;
}
}
/* fixes alignment setting-description to label above */
.color {
.setting-description {
margin-top: -0.5em;
}
}
/* fixes alignment of checkbox to label and to checkmark */
.settings-view input[type="checkbox"] {
margin: 0.29em 0.75em 0 -2.2em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment