Skip to content

Commit

Permalink
Fix rendering buttons in table in safari
Browse files Browse the repository at this point in the history
  • Loading branch information
haecheonlee committed Apr 13, 2024
1 parent 9faf99d commit c20dd54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
11 changes: 4 additions & 7 deletions src/components/EditorCanvas/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ export default function Table(props) {
size="small"
theme="solid"
style={{
backgroundColor: "#2f68ad",
opacity: "0.7",
backgroundColor: "#2F68ADB3",
marginRight: "6px",
}}
onClick={openEditor}
Expand Down Expand Up @@ -176,8 +175,7 @@ export default function Table(props) {
type="tertiary"
size="small"
style={{
opacity: "0.7",
backgroundColor: "grey",
backgroundColor: "#808080B3",
color: "white",
}}
/>
Expand Down Expand Up @@ -282,7 +280,7 @@ export default function Table(props) {
} flex items-center gap-2 overflow-hidden`}
>
<button
className="flex-shrink-0 w-[10px] h-[10px] bg-[#2f68ad] opacity-80 z-50 rounded-full"
className="flex-shrink-0 w-[10px] h-[10px] bg-[#2F68ADCC] rounded-full"
onMouseDown={() => {
handleGripField(index);
setLinkingLine((prev) => ({
Expand Down Expand Up @@ -316,8 +314,7 @@ export default function Table(props) {
theme="solid"
size="small"
style={{
opacity: "0.7",
backgroundColor: "#d42020",
backgroundColor: "#D42020B3",
}}
icon={<IconMinus />}
onClick={() => deleteField(fieldData, tableData.id)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/SimpleCanvas.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function Table({ table, grab }) {
>
<div className={hoveredField === i ? "text-zinc-500" : ""}>
<button
className={`w-[9px] h-[9px] bg-[#2f68ad] opacity-80 z-50 rounded-full me-2`}
className={`w-[9px] h-[9px] bg-[#2F68ADCC] rounded-full me-2`}
/>
{e.name}
</div>
Expand Down

0 comments on commit c20dd54

Please sign in to comment.