web: fix broken colors in some places

This commit is contained in:
Abdullah Atta
2023-08-07 06:54:33 +05:00
parent 5af5549173
commit 0074548b84
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ function ContentToggle(props) {
</Button>
)}
<Button
variant={isOtherSelected ? "error" : "primary"}
variant={isOtherSelected ? "error" : "accent"}
onClick={() => {
if (isOtherSelected) {
resolveConflict({ saveCopy: false });

View File

@@ -638,7 +638,7 @@ function DropZone(props: DropZoneProps) {
position: "absolute",
width: "100%",
height: "100%",
bg: "overlay",
bg: "backdrop",
zIndex: 3,
alignItems: "center",
justifyContent: "center",