Compare commits

..

No commits in common. "PostSubmissionBranch" and "nya" have entirely different histories.

3 changed files with 4 additions and 3 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,7 +110,8 @@ a,
max-height: 200px; max-height: 200px;
min-height: 200px; min-height: 200px;
border-radius: 200px; border-radius: 200px;
transform: translate(10%, 25%); bottom: -1.5rem;
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=./store.db;Cache=Shared"); o.UseSqlite("Data Source=/data/store.db;Cache=Shared");
o.EnableDetailedErrors(); o.EnableDetailedErrors();
} }