Browse Source

Merge pull request #14939 from abpframework/Adding-space-between-search-dt-1161

Added margin bottom to card for better appearance
pull/14995/head
Enis Necipoglu 4 years ago
committed by GitHub
parent
commit
35b17641c8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Card/AbpCardTagHelperService.cs

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Card/AbpCardTagHelperService.cs

@ -8,7 +8,7 @@ public class AbpCardTagHelperService : AbpTagHelperService<AbpCardTagHelper>
public override void Process(TagHelperContext context, TagHelperOutput output)
{
output.TagName = "div";
output.Attributes.AddClass("card");
output.Attributes.AddClass("card mb-3");
SetBorder(context, output);
}

Loading…
Cancel
Save