Skip to content

Commit 93ff53a

Browse files
committed
feat: enforce styles overwrite
1 parent 7d3658c commit 93ff53a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sender.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export function SenderButton({
6464
>
6565
{icon ?? (
6666
<img
67-
className="filter brightness-0 invert"
67+
className="filter !brightness-0 invert"
6868
src={isSending ? QuickStop : PublishNew}
6969
alt={isSending ? "icon-quick-stop" : "icon-publish-new"}
7070
/>
@@ -180,7 +180,7 @@ export function Sender({
180180
data-slot="sender"
181181
className={twMerge(
182182
clsx(
183-
"flex flex-col items-center border border-gray-200 rounded-2xl shadow-sm transition-all duration-300 hover:shadow-md focus-within:ring-2 focus-within:ring-blue-500 focus-within:border-blue-500",
183+
"flex flex-col items-center border border-gray-200 dark:border-gray-700 rounded-2xl shadow-sm transition-all duration-300 hover:shadow-md focus-within:ring-2 focus-within:ring-blue-500 focus-within:border-blue-500",
184184
className,
185185
),
186186
)}
@@ -192,7 +192,7 @@ export function Sender({
192192
onChange={handleChange}
193193
onKeyDown={handleKeyDown}
194194
placeholder={placeholder}
195-
className="w-full pt-4 px-4 border-0 rounded-2xl resize-none focus:ring-0 focus:outline-none text-gray-700 placeholder-gray-400"
195+
className="w-full pt-4 px-4 border-0 rounded-2xl !resize-none focus:ring-0 focus:outline-none text-gray-700 placeholder-gray-400"
196196
rows={2}
197197
/>
198198
<div className="flex items-center w-full px-4 py-2 gap-4">

0 commit comments

Comments
 (0)