Make clickable buttons appear clickable

This commit is contained in:
KingRainbow44 2023-05-12 23:20:00 -04:00
parent 8c0045a8d7
commit 6e1617e621
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE
4 changed files with 24 additions and 0 deletions

View File

@ -20,6 +20,12 @@
max-height: 128px;
text-align: center;
align-self: center;
user-select: none;
}
.SideBar_Title:hover {
cursor: pointer;
}
.SideBar_Buttons {
@ -28,6 +34,8 @@
padding-left: 27px;
gap: 15px;
user-select: none;
}
.SideBar_Enter {

View File

@ -14,6 +14,11 @@
gap: 20px;
border-radius: 10px;
user-select: none;
}
.HomeButton:hover {
cursor: pointer;
}
.HomeButton_Icon {

View File

@ -111,6 +111,10 @@
background-color: var(--background-color);
}
.ItemCard_Operation:hover {
cursor: pointer;
}
.ItemCard_Count {
max-width: 105px;
height: 48px;
@ -140,4 +144,10 @@
color: var(--text-primary-color);
background-color: var(--secondary-color);
user-select: none;
}
.ItemCard_Submit:hover {
cursor: pointer;
}

View File

@ -10,6 +10,7 @@
max-height: 64px;
align-items: center;
cursor: pointer;
}
.SideBarButton_Icon {