Skip to content

Commit

Permalink
fix inline typeahead vertical positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
JByfordRew committed Jun 10, 2022
1 parent 6133e54 commit 7ec7220
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -579,4 +579,4 @@ Your razor file.
* Version 1.0.0 - initial release .NET 6 component.

## Roadmap
* None planned
* Known Issue: fix inline typeahead vertical positioning.
2 changes: 1 addition & 1 deletion src/BlazorStyledTextArea/StyledTextArea.razor
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
}
</div>
<div>
<div id='id-@this.id.ToString()-bsta-typeahead' style='position: absolute; margin-top: -0.13em; top: @((caretData.Top)+"px"); left: @((caretData.Left)+"px")'>
<div id='id-@this.id.ToString()-bsta-typeahead' style='position: absolute; margin-top: -0.17em; top: @((caretData.Top)+"px"); left: @((caretData.Left)+"px")'>
@if (InlineTypeahead is not null)
{
@InlineTypeahead
Expand Down

0 comments on commit 7ec7220

Please sign in to comment.