14 lines
210 B
CSS
14 lines
210 B
CSS
@layer components {
|
|
.expandable-on-native {
|
|
body:not([data-platform~=native]) & {
|
|
&::details-content {
|
|
display: contents;
|
|
}
|
|
|
|
summary {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|