You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the underlined elements on about.flipboard.com URLs have their underlines set too close to the text.
For example, these appear identically with or without the theme enabled:
But these appear too close:
This can be resolved by moving them out to their own separate rules, with different pixel measurements for each corner of the linear-gradient. For example:
a {
background-image:linear-gradient(to top,rgba(0,0,0,0),rgba(0,0,0,0) 0px,#D220px,#D221px,rgba(0,0,0,0) 1px) !important;
/* versus */background-image:linear-gradient(to top,rgba(0,0,0,0),rgba(0,0,0,0) 2px,#D222px,#D223px,rgba(0,0,0,0) 3px) !important;
}
The correct pixel values for each unique selector that is incorrect should be in Flipboard's CSS files.
The text was updated successfully, but these errors were encountered:
Some of the underlined elements on about.flipboard.com URLs have their underlines set too close to the text.
For example, these appear identically with or without the theme enabled:


But these appear too close:
This can be resolved by moving them out to their own separate rules, with different pixel measurements for each corner of the linear-gradient. For example:
The correct pixel values for each unique selector that is incorrect should be in Flipboard's CSS files.
The text was updated successfully, but these errors were encountered: