Skip to content

Commit 58cbd58

Browse files
committed
improve experience
1 parent d725d15 commit 58cbd58

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/aoWebWallet/Shared/Components/AppListItem.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<MudItem xs="12" sm="3" Class="pb-0">
22
<MudPaper Elevation="2" Class="pa-6">
33
<MudStack>
4-
<MudLink Href="@Link" Target="_blank">
4+
<MudLink Class="hover-here" Href="@Link" Target="_blank">
5+
<MudIcon Icon="@Icons.Material.Filled.ArrowOutward" Class="float-right" Color="Color.Primary" />
56
<MudStack AlignItems="AlignItems.Center">
67
<MudAvatar Size="Size.Large">
78
<MudImage Src="@Logo" Alt="@Name" Elevation="25" />
89
</MudAvatar>
910
</MudStack>
1011
<MudText Class="my-2">@Name - @Description</MudText>
11-
<MudIcon Icon="@Icons.Material.Filled.ArrowOutward" Class="float-right" Color="Color.Primary" />
1212
</MudLink>
1313
</MudStack>
1414
</MudPaper>

src/aoWebWallet/wwwroot/css/app.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,3 +422,8 @@ body {
422422
.float-right {
423423
float:right;
424424
}
425+
426+
427+
.hover-here:hover > svg.float-right {
428+
background: white;
429+
}

0 commit comments

Comments
 (0)