[SM-539] hide HTML Details marker on Safari (#4828)

This commit is contained in:
Will Martin 2023-02-23 11:26:07 -05:00 committed by GitHub
parent 30a66a9f65
commit a7e0be1014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -11,3 +11,12 @@
td.tw-break-words {
overflow-wrap: anywhere;
}
/**
* tw-list-none hides summary arrow in Firefox & Chrome but not Safari:
* https://github.com/tailwindlabs/tailwindcss/issues/924#issuecomment-915509785
*/
summary.tw-list-none::marker,
summary.tw-list-none::-webkit-details-marker {
display: none;
}