Skip to content

Commit

Permalink
fix(blazorui): resolve BitCallout issues #8320 (#8321)
Browse files Browse the repository at this point in the history
  • Loading branch information
msynk authored Aug 15, 2024
1 parent 34f14b9 commit 8e4ae30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ await _js.ToggleCallout(_dotnetObj,
0,
"",
"",
true,
false,
RootElementClass);

await OnToggle.InvokeAsync(IsOpen);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
}
}

.bit-clo-acn {
width: fit-content;
}

.bit-clo-ovl {
top: 0;
left: 0;
Expand All @@ -24,13 +28,12 @@
.bit-clo-cal {
display: none;
position: fixed;
overflow: hidden auto;
min-width: max-content;
box-sizing: border-box;
z-index: $zindex-callout;
background-color: $clr-bg-pri;
animation-fill-mode: both;
animation-duration: 0.367s;
background-color: $clr-bg-pri;
animation-name: bit-fade-show, bit-slide-down;
animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1);
}

0 comments on commit 8e4ae30

Please sign in to comment.