15 lines
333 B
CSS
15 lines
333 B
CSS
/* generic helper to hide client side content */
|
|
.client-side {
|
|
display: none;
|
|
}
|
|
|
|
/* unset text toggle implementation on artist + genre pages */
|
|
[data-toggle-content].text-toggle-hidden {
|
|
height: unset !important;
|
|
overflow: unset !important;
|
|
margin-bottom: unset !important;
|
|
|
|
&::after {
|
|
display: none !important;
|
|
}
|
|
}
|