Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: frozen border #3801

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

Expand Down
3 changes: 0 additions & 3 deletions src/frontend/src/style/applies.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading