Skip to content

Instantly share code, notes, and snippets.

@nextab
Created March 3, 2023 13:01
Show Gist options
  • Select an option

  • Save nextab/ca85f6a6b410b83782ccdfa16b930b88 to your computer and use it in GitHub Desktop.

Select an option

Save nextab/ca85f6a6b410b83782ccdfa16b930b88 to your computer and use it in GitHub Desktop.
/* #region Custom Shortcodes */
details {
margin-top: 5px;
summary {
color: #fff;
cursor: pointer;
display: inline-block;
list-style: none;
transition: all 350ms ease;
text-decoration: underline;
&::-webkit-details-marker {
display: none; /* don't show Triangle */
}
}
&:hover, &[open] {
summary {
text-decoration: none;
}
}
&[open] {
summary {
margin-bottom: 7px;
}
}
}
/* #endregion Custom Shortcodes */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment