Fix details/summary marker on privacy-modal being shown twice (#2482)

This commit is contained in:
Richard Schreiber
2022-02-23 09:46:33 +01:00
committed by GitHub
parent aee8de54ed
commit b20797fe4b

View File

@@ -220,10 +220,11 @@ body.loading .container {
}
details {
& > summary {
list-style: inherit;
list-style: none;
}
& > summary::-webkit-details-marker {
display: inherit;
& > summary::-webkit-details-marker,
& > summary::marker {
display: none;
}
margin-bottom: 10px;
}