Skip to content

Commit 89316b7

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/pay
2 parents 15aa559 + e27b72a commit 89316b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/page/chat/chat-input/input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function ChatInput(props: IProps) {
6565
onCompositionStart={handleCompositionStart}
6666
onCompositionEnd={handleCompositionEnd}
6767
placeholder={t('chat.textarea.placeholder')}
68-
className="resize-none p-0 border-transparent shadow-none focus-visible:border-transparent focus-visible:ring-0 focus-visible:shadow-none hover:border-transparent hover:shadow-none placeholder:text-[#9CA3AF] dark:placeholder:text-gray-400"
68+
className="resize-none no-scrollbar p-0 border-transparent shadow-none focus-visible:border-transparent focus-visible:ring-0 focus-visible:shadow-none hover:border-transparent hover:shadow-none placeholder:text-[#9CA3AF] dark:placeholder:text-gray-400"
6969
/>
7070
</div>
7171
);

src/page/user/login/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export function LoginForm({ className, children, ...props }: IProps) {
4848
const [isLoading, setIsLoading] = useState(false);
4949
const [usePassword, setUsePassword] = useState(false);
5050
const linkClass =
51-
'text-sm hover:underline dark:text-[#60a5fa] underline-offset-2';
51+
'text-sm hover:underline dark:text-[#60a5fa] text-[#107bfa] underline-offset-2';
5252

5353
const emailForm = useForm<z.infer<typeof emailFormSchema>>({
5454
resolver: zodResolver(emailFormSchema),

0 commit comments

Comments
 (0)