Compare commits
1 commit
nya
...
PostSubmis
Author | SHA1 | Date | |
---|---|---|---|
89c4df7440 |
3 changed files with 3 additions and 4 deletions
|
@ -18,8 +18,8 @@ else
|
|||
{
|
||||
<div class="user-profile">
|
||||
<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="background-img" src="images/background.jpg" alt="Background" />
|
||||
</div>
|
||||
<div class="profile-names">
|
||||
<h1 class="profile-username">@($"@{_user.Username}")</h1>
|
||||
|
|
|
@ -110,8 +110,7 @@ a,
|
|||
max-height: 200px;
|
||||
min-height: 200px;
|
||||
border-radius: 200px;
|
||||
bottom: -1.5rem;
|
||||
left: 1rem;
|
||||
transform: translate(10%, 25%);
|
||||
}
|
||||
|
||||
.profile-names {
|
||||
|
|
|
@ -12,7 +12,7 @@ public class StoreContext : DbContext
|
|||
|
||||
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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue