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="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>
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue