panels: Adjust opacity value for the exit widget.

This makes this icon less invisible.

Once the user hovers over the "x" it will become brighter to notify the user.
This commit is contained in:
TylerPham2000
2021-04-09 17:49:50 -04:00
committed by GitHub
parent 4d9f161e0f
commit 4dacbfdc82

View File

@@ -771,6 +771,11 @@ on a dark background, and don't change the dark labels dark either. */
.close {
color: inherit;
opacity: 0.8;
}
.close:hover {
opacity: 1;
}
}