Updating Mudblazor Version
This commit is contained in:
@@ -25,12 +25,12 @@
|
||||
<ContentHighlightComponent Title="Build Calculator"
|
||||
Description="Make a build!"
|
||||
Href="/build-calculator"
|
||||
ImageHref="image/hero/Build.png" />
|
||||
ImageHref="image/hero/Build.png"/>
|
||||
|
||||
<ContentHighlightComponent Title="Database"
|
||||
Description="Review the units!"
|
||||
Href="/database"
|
||||
ImageHref="image/hero/Database.png" />
|
||||
ImageHref="image/hero/Database.png"/>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
@@ -26,14 +26,14 @@
|
||||
margin-left: 12px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
||||
.contentHighlight:hover {
|
||||
background-color: var(--paper-hover);
|
||||
border-color: var(--paper-border-hover);
|
||||
text-decoration: none;
|
||||
box-shadow: 0 4px 6px rgba(0,0,0,0.6);
|
||||
transform: translateY(-2px) scale(1.01);
|
||||
}
|
||||
|
||||
.contentHighlight:hover {
|
||||
background-color: var(--paper-hover);
|
||||
border-color: var(--paper-border-hover);
|
||||
text-decoration: none;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
|
||||
transform: translateY(-2px) scale(1.01);
|
||||
}
|
||||
|
||||
|
||||
.contentHighlightTitle {
|
||||
@@ -43,8 +43,8 @@
|
||||
}
|
||||
|
||||
.contentHighlightImage {
|
||||
border: 1px solid rgba(0,0,0,0.5);
|
||||
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
|
||||
border: 1px solid rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
|
||||
width: calc(100% - 32px);
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
@@ -62,17 +62,13 @@
|
||||
|
||||
@code {
|
||||
|
||||
[Parameter]
|
||||
public string Href { get; set; } = default!;
|
||||
[Parameter] public string Href { get; set; } = default!;
|
||||
|
||||
[Parameter]
|
||||
public string Title { get; set; } = default!;
|
||||
[Parameter] public string Title { get; set; } = default!;
|
||||
|
||||
[Parameter]
|
||||
public string Description { get; set; } = default!;
|
||||
[Parameter] public string Description { get; set; } = default!;
|
||||
|
||||
[Parameter]
|
||||
public string ImageHref { get; set; } = default!;
|
||||
[Parameter] public string ImageHref { get; set; } = default!;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user