Unverified Commit 89053e86 authored by boojack's avatar boojack Committed by GitHub

chore: fix cover bg color (#1337)

parent 50f36e3e
...@@ -75,7 +75,7 @@ const MemoContent: React.FC<Props> = (props: Props) => { ...@@ -75,7 +75,7 @@ const MemoContent: React.FC<Props> = (props: Props) => {
</div> </div>
{state.expandButtonStatus !== -1 && ( {state.expandButtonStatus !== -1 && (
<div className={`expand-btn-container ${state.expandButtonStatus === 0 && "!-mt-7"}`}> <div className={`expand-btn-container ${state.expandButtonStatus === 0 && "!-mt-7"}`}>
<div className="absolute top-0 left-0 w-full h-full blur-lg bg-white"></div> <div className="absolute top-0 left-0 w-full h-full blur-lg bg-white dark:bg-zinc-700"></div>
<span className={`btn z-10 ${state.expandButtonStatus === 0 ? "expand-btn" : "fold-btn"}`} onClick={handleExpandBtnClick}> <span className={`btn z-10 ${state.expandButtonStatus === 0 ? "expand-btn" : "fold-btn"}`} onClick={handleExpandBtnClick}>
{state.expandButtonStatus === 0 ? t("common.expand") : t("common.fold")} {state.expandButtonStatus === 0 ? t("common.expand") : t("common.fold")}
<Icon.ChevronRight className="icon-img opacity-80" /> <Icon.ChevronRight className="icon-img opacity-80" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment