Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions plugins/google-sheets/src/components/CheckboxTextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ export function CheckboxTextfield({ value, darken, checked, onChange, disabled }
return (
<div
className={cx(
"flex bg-tertiary rounded-lg items-center pl-[10px] select-none h-[30px] cursor-pointer",
"flex bg-tertiary rounded-lg items-center px-[10px] select-none h-[30px] cursor-pointer overflow-hidden",
darken && "opacity-50"
)}
onClick={disabled ? undefined : toggle}
role={disabled ? undefined : "button"}
title={value}
>
<input
type="checkbox"
Expand All @@ -36,7 +37,7 @@ export function CheckboxTextfield({ value, darken, checked, onChange, disabled }
disabled={disabled}
className="cursor-pointer"
/>
<span className="w-full pl-2 text-primary">{value}</span>
<span className="w-full pl-2 text-primary truncate">{value}</span>
</div>
)
}
1 change: 0 additions & 1 deletion plugins/google-sheets/src/globals.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import "tailwindcss";

@custom-variant dark (&:where([data-framer-theme="dark"], [data-framer-theme="dark"] *));
Expand Down
Loading