feat: wide mode icon

This commit is contained in:
DIYgod 2024-10-12 03:31:43 +08:00
parent 6760a3486f
commit a19ab9a247
No known key found for this signature in database
1 changed files with 3 additions and 1 deletions

View File

@ -261,7 +261,9 @@ const WideModeButton = () => {
: t("entry_list_header.switch_to_normalmode")
}
>
<i className={cn(!isWideMode ? "i-mgc-align-justify-cute-re" : "i-mgc-layout-4-cute-re")} />
<i
className={cn(isWideMode ? "i-mgc-align-justify-cute-re" : "i-mgc-align-left-cute-re")}
/>
</ActionButton>
</ImpressionView>
)