diff --git a/src/Interlinked.Core/Pages/UserProfile.razor b/src/Interlinked.Core/Pages/UserProfile.razor index f5556de..42b12a8 100644 --- a/src/Interlinked.Core/Pages/UserProfile.razor +++ b/src/Interlinked.Core/Pages/UserProfile.razor @@ -18,8 +18,8 @@ else {
- Background Profile Picture + Background

@($"@{_user.Username}")

diff --git a/src/Interlinked.Core/wwwroot/css/app.css b/src/Interlinked.Core/wwwroot/css/app.css index af7a0c1..4778487 100644 --- a/src/Interlinked.Core/wwwroot/css/app.css +++ b/src/Interlinked.Core/wwwroot/css/app.css @@ -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 { diff --git a/src/Interlinked.User/StoreContext.cs b/src/Interlinked.User/StoreContext.cs index 9f6131f..b8f39d7 100644 --- a/src/Interlinked.User/StoreContext.cs +++ b/src/Interlinked.User/StoreContext.cs @@ -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(); }