Skip to content

Commit

Permalink
docs(checkbox): nits
Browse files Browse the repository at this point in the history
  • Loading branch information
desmondinho committed Oct 30, 2024
1 parent b2db082 commit a488488
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
<LumexIcon Icon="@Icons.Rounded.HealthAndSafety"
Size="@new("32")" />
<div>
<div class="font-semibold">Mobile Anti-Virus</div>
<div class="font-medium">Mobile Anti-Virus</div>
<p class="text-sm text-primary">5,07 €/month</p>
</div>
</div>
</LumexCheckbox>

@code {
private CheckboxSlots _classes = new()
{
Root = ElementClass.Empty()
.Add( "w-full max-w-md gap-2 p-4" )
.Add( "rounded-lg border-2 border-default-200 " )
.Add( "bg-surface1 hover:bg-surface2" )
.Add( "data-[checked=true]:border-primary" )
.ToString(),
Label = "w-full"
};
{
Root = ElementClass.Empty()
.Add( "w-full max-w-md gap-2 p-4" )
.Add( "rounded-lg border-2 border-default-100 " )
.Add( "bg-surface1 hover:bg-surface2" )
.Add( "data-[checked=true]:border-primary" )
.ToString(),
Label = "w-full"
};
}

0 comments on commit a488488

Please sign in to comment.