diff --git a/packages/client/src/index.html b/packages/client/src/index.html index eadca6b..d72b570 100644 --- a/packages/client/src/index.html +++ b/packages/client/src/index.html @@ -1,5 +1,5 @@ - +
{{userProfile.name}}
diff --git a/packages/client/src/modules/user-profile/components/user-profile-card/user-profile-card.component.scss b/packages/client/src/modules/user-profile/components/user-profile-card/user-profile-card.component.scss index 9130f36..ce80399 100644 --- a/packages/client/src/modules/user-profile/components/user-profile-card/user-profile-card.component.scss +++ b/packages/client/src/modules/user-profile/components/user-profile-card/user-profile-card.component.scss @@ -61,7 +61,7 @@ &__picture { width: 100%; aspect-ratio: 3/4; - background-color: rgb(240, 240, 240); + background: linear-gradient(180deg, var(--theme-background-secondary) 0%, rgba(var(--theme-main-rgb), 0.075) 100%); border-radius: $inner-radius; object-fit: cover; object-position: center; @@ -147,7 +147,7 @@ object-fit: cover; object-position: center; border-radius: $inner-radius; - background-color: rgb(240, 240, 240); + background: linear-gradient(180deg, var(--theme-background-secondary) 0%, rgba(var(--theme-main-rgb), 0.075) 100%); } &__info { diff --git a/packages/client/src/styles.scss b/packages/client/src/styles.scss index 08e0a32..8da1b63 100644 --- a/packages/client/src/styles.scss +++ b/packages/client/src/styles.scss @@ -14,7 +14,7 @@ --theme-background-secondary: rgb(var(--theme-background-secondary-rgb)); } -html.app-html, body.app-body { +html, body { margin: 0; width: 100%; height: 100%;