Fix minor styling

This commit is contained in:
Sumire Isshiki 2024-02-12 14:23:34 +09:00
parent 70c75d7f37
commit 5e33896123
3 changed files with 10 additions and 3 deletions

View File

@ -28,7 +28,8 @@ export default function Activities() {
</a>
</h3>
<p className="text-base font-normal text-gray-400">
<p></p>
</p>
</li>
<li className="mb-2 ms-4">

View File

@ -44,7 +44,13 @@ export default function Card() {
></div>
<div className="flex justify-center w-screen items-center">
<div className="mx-2 inline-block">
<img className="rounded-full" width={100} height={100} src="./avatar.webp" />
<img
draggable="false"
className="rounded-full hover:cursor-grab"
width={100}
height={100}
src="./avatar.webp"
/>
</div>
<div className="mx-2 text-left h-full inline-block">
<Logo />

View File

@ -23,7 +23,7 @@ export default function Menu() {
return (
<RecoilRoot>
<ul className="w-full text-lg font-medium text-center">
<ul className="w-full text-lg font-medium text-center hover:cursor-pointer">
<li
className={`w-full px-4 py-2${page === Pages.Profile ? " bg-slate-700" : ""}`}
onClick={() => {setPage(Pages.Profile)}}