Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix z-index for content part
  • Loading branch information
vnbaaij committed Oct 25, 2024
commit 2556b7424341cc3be80d3f467a5e95f67a91ac10
4 changes: 2 additions & 2 deletions src/Core/Components/InputFile/FluentInputFile.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
@using Microsoft.AspNetCore.Components.Forms
@inherits FluentComponentBase

<div class="@ClassValue"
<div class="@ClassValue"
style="@StyleValue"
disabled="@Disabled"
@ref="@_containerElement">

<div class="inputfile-content">
<div class="inputfile-content" style="@($"z-index: {ZIndex.InputFileDropZone + 1} ")">

@ChildContent

Expand Down