You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
661 B
28 lines
661 B
<a href="@Href" target="_blank" class="codeLinkButton"> |
|
View on GitHub <i class="fa-brands fa-github" style="font-size: 24px; margin-left: 5px;"></i> |
|
</a> |
|
|
|
<style> |
|
.codeLinkButton { |
|
color: white; |
|
background-color: var(--info); |
|
border: 2px solid var(--info-border); |
|
padding: 16px; |
|
border-radius: 3px; |
|
display: block; |
|
width: 200px; |
|
text-align: center; |
|
} |
|
|
|
.codeLinkButton:hover { |
|
color: white; |
|
background-color: var(--info-hover); |
|
border: 2px solid var(--info-border-hover); |
|
} |
|
</style> |
|
|
|
@code { |
|
|
|
[Parameter] public string Href { get; set; } = ""; |
|
|
|
} |