fix: frozen border (#3801)

Fix frozen border
This commit is contained in:
Lucas Oliveira 2024-09-13 11:40:41 -03:00 committed by GitHub
commit cc04a21d9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 4 deletions

View file

@ -67,7 +67,7 @@ export default function NodeStatus({
let className = selected
? "border ring ring-[0.5px] ring-selected border-selected hover:shadow-node"
: "border hover:shadow-node";
let frozenClass = selected ? "outline-ring-frozen" : "outline-frozen";
let frozenClass = selected ? "border-ring-frozen" : "border-frozen";
return frozen ? frozenClass : className;
};

View file

@ -135,9 +135,6 @@
.border-frozen {
@apply border shadow-frozen-ring;
}
.frosted {
@apply rounded-md bg-frozen-blue backdrop-blur-xs;
}
.frozen {
position: relative;
overflow: hidden;