this is our code to improve the project AFTER SUBMISSION, This is NOT the code that we're using for the competition, we're just playing around with the project.

This commit is contained in:
None4Now 2023-10-01 14:09:42 +02:00
parent a5cf572c05
commit 89c4df7440
3 changed files with 3 additions and 4 deletions

View file

@ -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>

View file

@ -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 {

View file

@ -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();
}