tweak styles

This commit is contained in:
Caleb Owens 2024-06-19 15:14:37 +02:00
parent 4bdba5c85d
commit f1fe727049
No known key found for this signature in database
2 changed files with 5 additions and 3 deletions

View File

@ -40,7 +40,7 @@
outline-offset: -10px;
backdrop-filter: blur(10px);
z-index: 100;
z-index: var(--z-lifted);
transition: background-color 0.1s;

View File

@ -51,10 +51,12 @@
.indicator {
width: 100%;
height: 3px;
transition: background-color 0.1s;
transition: opacity 0.1s;
background-color: var(--clr-border-2);
opacity: 0;
&.hovered {
background-color: rgba(0, 0, 0, 0.6);
opacity: 1;
}
}
</style>