mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-23 01:35:38 +03:00
Fix spoiler bug again
This commit is contained in:
parent
f6897ef4d8
commit
c6c18aae09
1 changed files with 3 additions and 3 deletions
|
@ -317,9 +317,9 @@ function Status({
|
|||
</>
|
||||
)}
|
||||
<div
|
||||
class={`content-container ${spoilerText ? 'has-spoiler' : ''} ${
|
||||
showSpoiler ? 'show-spoiler' : ''
|
||||
}`}
|
||||
class={`content-container ${
|
||||
spoilerText || sensitive ? 'has-spoiler' : ''
|
||||
} ${showSpoiler ? 'show-spoiler' : ''}`}
|
||||
style={
|
||||
size === 'l' && {
|
||||
'--content-text-weight':
|
||||
|
|
Loading…
Reference in a new issue