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
The CSS on the slsa.dev website removes virtual whitespace between paragraphs, which makes it really hard to read. This is because (at least) there are two different rules that set p { margin: 0 }, one in main.css and one in tailwind.min.css. Adding a margin after the paragraph will fix it, though care must be taken to not break anything else. (I wish we had an easy visual diffing tool.)
If anyone wants to send out a PR to fix this, it would be most appreciated!
If we use add the markdown class (see #357 for example), it fixes most issues, but blockquote elements are formatted as horizontal boxes (flex model, different color, etc.). We'd need to fix that before applying that fix to the standards pages.
The CSS on the slsa.dev website removes virtual whitespace between paragraphs, which makes it really hard to read. This is because (at least) there are two different rules that set
p { margin: 0 }
, one in main.css and one in tailwind.min.css. Adding a margin after the paragraph will fix it, though care must be taken to not break anything else. (I wish we had an easy visual diffing tool.)If anyone wants to send out a PR to fix this, it would be most appreciated!
Example
https://slsa.dev/verification_summary/v0.1
Current:
Expected:
The text was updated successfully, but these errors were encountered: