Compare commits

...

1 commit

3 changed files with 3 additions and 4 deletions

View file

@ -18,8 +18,8 @@ else
{ {
<div class="user-profile"> <div class="user-profile">
<div class="bkg-img"> <div class="bkg-img">
<img class="background" src="images/background.jpg" alt="Background" />
<img class="profile-img" src="images/pfp.jpg" alt="Profile Picture" /> <img class="profile-img" src="images/pfp.jpg" alt="Profile Picture" />
<img class="background-img" src="images/background.jpg" alt="Background" />
</div> </div>
<div class="profile-names"> <div class="profile-names">
<h1 class="profile-username">@($"@{_user.Username}")</h1> <h1 class="profile-username">@($"@{_user.Username}")</h1>

View file

@ -110,8 +110,7 @@ a,
max-height: 200px; max-height: 200px;
min-height: 200px; min-height: 200px;
border-radius: 200px; border-radius: 200px;
bottom: -1.5rem; transform: translate(10%, 25%);
left: 1rem;
} }
.profile-names { .profile-names {

View file

@ -12,7 +12,7 @@ public class StoreContext : DbContext
protected override void OnConfiguring(DbContextOptionsBuilder o) protected override void OnConfiguring(DbContextOptionsBuilder o)
{ {
o.UseSqlite("Data Source=/data/store.db;Cache=Shared"); o.UseSqlite("Data Source=./store.db;Cache=Shared");
o.EnableDetailedErrors(); o.EnableDetailedErrors();
} }