Skip to content

Commit

Permalink
Add GitHub link to Index page and update styling in Cloning page
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Dec 26, 2023
1 parent 1c19362 commit fa89fdf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
<h1 class="title is-size-1 has-text-white">Blazor Sortable</h1>
<p>An integration of the SortableJS library with Blazor.</p>
</div>

<a class="button is-dark" href="https://github.com/the-urlist/blazorsortable" target="_blank">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>View on GitHub</span>
</a>

</div>
<section class="section has-background-white">
<SimpleList></SimpleList>
Expand Down
4 changes: 2 additions & 2 deletions Shared/Cloning.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="column">
<SortableList Group="cloning" Pull="clone" Items="items1" Context="item" OnRemove="ListOneRemove">
<SortableItemTemplate>
<div class="has-border has-background-blazor has-text-white">
<div class="card has-border has-background-blazor has-text-white">
<p class="is-size-4 p-2 ml-4">@item.Name</p>
</div>
</SortableItemTemplate>
Expand All @@ -16,7 +16,7 @@
<div class="column">
<SortableList Group="cloning" Pull="clone" OnRemove="ListTwoRemove" Items="items2" Context="item">
<SortableItemTemplate>
<div class="has-border has-background-blazor has-text-white">
<div class=" card has-border has-background-blazor has-text-white">
<p class="is-size-4 p-2 ml-4">@item.Name</p>

</div>
Expand Down
Empty file added Shared/DisablingSorting.razor
Empty file.

0 comments on commit fa89fdf

Please sign in to comment.