Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d89df2c

Browse files
committedJun 14, 2022
Fix wrong css selector
1 parent e7ec974 commit d89df2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/LinkDotNet.Blog.Web/Features/AboutMe/Components/Profile.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@inject AppConfiguration appConfiguration
77
@inject IRepository<ProfileInformationEntry> repository
88
@inject ISortOrderCalculator sortOrderCalculator
9-
<div class="profile">
9+
<div class="profile-card">
1010
<div class="profile-name">
1111
<span>@appConfiguration.ProfileInformation.Name</span>
1212
<br/>

‎src/LinkDotNet.Blog.Web/Features/AboutMe/Components/Profile.razor.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.profile {
1+
.profile-card {
22
display: inline-block;
33
box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
44
width: 100%;

0 commit comments

Comments
 (0)
Please sign in to comment.