feat: implement logout action

This commit is contained in:
Ardeman
2025-02-27 23:50:46 +08:00
parent 5acf3970a3
commit 7db38d3b67
8 changed files with 70 additions and 19 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ export const PopupModal = ({
<DialogTitle className="relative flex justify-center">
<button
onClick={onClose}
className="absolute top-0 left-0 items-center lg:hidden"
className="absolute top-0 left-0 items-center sm:hidden"
>
<LeftArrow
width={50}
+1 -1
View File
@@ -54,7 +54,7 @@ export const SuccessModal = ({ isOpen, onClose }: ModalProperties) => {
<DialogTitle className="relative flex justify-center">
<button
onClick={onClose}
className="absolute top-0 left-0 items-center lg:hidden"
className="absolute top-0 left-0 items-center sm:hidden"
>
<LeftArrow
width={50}
+1 -1
View File
@@ -4,7 +4,7 @@ import { APP } from '~/configs/meta'
export const Banner = () => {
return (
<div className="min-h-[65px] lg:mx-10">
<div className="min-h-[65px] sm:mx-10">
<div className="relative">
<Link
to="/#"
+1 -1
View File
@@ -115,7 +115,7 @@ export const Carousel = (properties: TNews) => {
<div>
<h3
className={twMerge(
'mt-2 w-full font-bold lg:mt-0',
'mt-2 w-full font-bold sm:mt-0',
type === 'hero'
? 'text-2xl sm:text-4xl'
: 'text-xl sm:text-2xl',