feat: Add theming, no settings menu yet
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
JustTemmie 2025-07-02 23:50:09 +02:00
parent cca2c5ffd9
commit 8033fd27e1
Signed by: justtemmie
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU
13 changed files with 96 additions and 42 deletions

View file

@ -1,7 +1,7 @@
<template>
<div id="profile-popup">
<img v-if="props.user.avatar" id="avatar" :src="props.user.avatar" alt="profile avatar">
<div id="cover-colour"></div>
<div id="cover-color"></div>
<div id="main-body">
<p id="display-name">
<strong>{{ props.user.display_name }}</strong>
@ -38,17 +38,17 @@ const props = defineProps<{
flex-direction: column;
}
#cover-colour {
#cover-color {
border-radius: 12px 12px 0 0;
min-height: 60px;
background-color: #442505;
background-color: var(--primary-color);
}
#main-body {
border-radius: 0 0 12px 12px;
padding: 12px;
min-height: 280px;
background-color: #4b3018;
background-color: var(--accent-color);
overflow-wrap: break-word;
hyphens: manual;
}
@ -75,7 +75,7 @@ const props = defineProps<{
}
#about-me {
background-color: #34200f;
background-color: var(--secondary-color);
border-radius: 12px;
margin-top: 32px;