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
In the first section of the cc-ssh-key-list component, we show text to help people generate their SSH key.
This text is implemented using paragraphs but the last paragraph adds a spacing below that makes the spacing of the first section bigger than typical cc-block-section.
This should be easy to fix:
either remove all paragraph margins & use display: grid + gap: 0.5em on their parent,
or only set margin-bottom for paragraphs that are not the last with the :not(:last-of-type) selector.
The text was updated successfully, but these errors were encountered:
Context
In the first section of the
cc-ssh-key-list
component, we show text to help people generate their SSH key.This text is implemented using paragraphs but the last paragraph adds a spacing below that makes the spacing of the first section bigger than typical
cc-block-section
.This should be easy to fix:
display: grid
+gap: 0.5em
on their parent,margin-bottom
for paragraphs that are not the last with the:not(:last-of-type)
selector.The text was updated successfully, but these errors were encountered: