BETTERZON-53: Styling clickable stuff on hover

This commit is contained in:
Patrick Müller 2021-04-05 13:40:55 +02:00
parent a4b8af7d64
commit 30f613c18a
3 changed files with 18 additions and 0 deletions

View File

@ -15,6 +15,10 @@
margin-left: 50%; margin-left: 50%;
} }
.logo:hover {
cursor: pointer;
}
.searchBox { .searchBox {
position: relative; position: relative;
margin: auto; margin: auto;
@ -36,6 +40,10 @@
margin-left: 10%; margin-left: 10%;
} }
.profileIcon:hover {
cursor: pointer;
}
.icon-3d { .icon-3d {
padding: 10px; padding: 10px;
color: #fff; color: #fff;

View File

@ -81,3 +81,8 @@
margin-top: .5em; margin-top: .5em;
text-align: center; text-align: center;
} }
.priceAlarm:hover {
background-color: lightgray;
cursor: pointer;
}

View File

@ -53,3 +53,8 @@
.productDescription { .productDescription {
grid-area: description; grid-area: description;
} }
.productItem:hover {
background-color: lightgray;
cursor: pointer;
}