Skip to content

Commit 764a2d6

Browse files
Merge pull request #504 from NeoCoderMatrix86/495-select-files-for-import-too-large-on-smartphone
Update DropFileInput.razor
2 parents 0dca542 + 16a1dd0 commit 764a2d6

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

AudioCuesheetEditor/Shared/Inputs/DropFileInput.razor

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,18 @@ along with Foobar. If not, see
2525
<ActivatorContent>
2626
<MudPaper Height="300px" Outlined Class="@dragClass">
2727
<MudStack AlignItems="AlignItems.Center">
28-
<MudIcon Icon="@Icons.Material.Outlined.FileUpload" Style="font-size: 8rem;" />
29-
<MudText Typo="Typo.h4" Align="Align.Center">
30-
@_localizer["Drag and drop files here or click to choose files"]
31-
</MudText>
28+
<MudHidden Breakpoint="Breakpoint.SmAndDown">
29+
<MudIcon Icon="@Icons.Material.Outlined.FileUpload" Style="font-size: 8rem;" />
30+
<MudText Typo="Typo.h4" Align="Align.Center">
31+
@_localizer["Drag and drop files here or click to choose files"]
32+
</MudText>
33+
</MudHidden>
34+
<MudHidden Breakpoint="Breakpoint.SmAndDown" Invert>
35+
<MudIcon Icon="@Icons.Material.Outlined.FileUpload" Style="font-size: 4rem;" />
36+
<MudText Typo="Typo.h6" Align="Align.Center">
37+
@_localizer["Drag and drop files here or click to choose files"]
38+
</MudText>
39+
</MudHidden>
3240
</MudStack>
3341
</MudPaper>
3442
</ActivatorContent>

0 commit comments

Comments
 (0)