17 lines
292 B
CSS
17 lines
292 B
CSS
.project:hover {
|
|
@mixin light {
|
|
background-color: whitesmoke;
|
|
}
|
|
@mixin dark {
|
|
background-color: var(--mantine-color-dark-6);
|
|
}
|
|
}
|
|
|
|
.menu-button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.project:hover:has(.menu-button:hover) {
|
|
background: none; /* or revert to normal */
|
|
}
|