* [WIP] Transfer collections to own branch * fixes * rewrite js * Add visibility dropdown to collection edit modal * Add visibility badges to collection page * Update visibility options and icons in collection page * Add delete functionality to collection modal * Collection project deletion flow * remove "visit project" button on overflow * Remove via checklist not individually * Update manage title in settings.vue * remove collections from settings page * hook up collections page * collection header to look like project header * Refactor layout.scss and collections.vue * fix omorphia * Update * Conform collections to old design structure * Update navigation links and remove unused code * Add collection view and collections to user page * Refactor user project display logic * Add collection creation functionality and update profile labels * Add function calls to initialize user collections * Refactor collection page layout and functionality * Add initialization of user collections in create function * Fix styling issue in collection page * Update collection status to private * remove name * Refactor card component and update grid layout * Finish collections --------- Co-authored-by: Carter <safe@fea.st>
765 lines
22 KiB
Vue
765 lines
22 KiB
Vue
<template>
|
|
<div v-if="user">
|
|
<ModalCreation ref="modal_creation" />
|
|
<CollectionCreateModal ref="modal_collection_creation" />
|
|
<div class="user-header-wrapper">
|
|
<div class="user-header">
|
|
<Avatar
|
|
:src="previewImage ? previewImage : user.avatar_url"
|
|
size="md"
|
|
circle
|
|
:alt="user.username"
|
|
/>
|
|
<h1 class="username">
|
|
{{ user.username }}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
<div class="normal-page">
|
|
<div class="normal-page__sidebar">
|
|
<div class="card sidebar">
|
|
<h1 class="mobile-username">
|
|
{{ user.username }}
|
|
</h1>
|
|
<div class="card__overlay">
|
|
<FileInput
|
|
v-if="isEditing"
|
|
:max-size="262144"
|
|
:show-icon="true"
|
|
:prompt="formatMessage(messages.profileUploadAvatarInput)"
|
|
accept="image/png,image/jpeg,image/gif,image/webp"
|
|
class="choose-image iconified-button"
|
|
@change="showPreviewImage"
|
|
>
|
|
<UploadIcon />
|
|
</FileInput>
|
|
<button
|
|
v-else-if="auth.user && auth.user.id === user.id"
|
|
class="iconified-button"
|
|
@click="isEditing = true"
|
|
>
|
|
<EditIcon />
|
|
{{ formatMessage(commonMessages.editButton) }}
|
|
</button>
|
|
<button
|
|
v-else-if="auth.user"
|
|
class="iconified-button"
|
|
@click="() => reportUser(user.id)"
|
|
>
|
|
<ReportIcon aria-hidden="true" />
|
|
{{ formatMessage(messages.profileReportButton) }}
|
|
</button>
|
|
<nuxt-link v-else class="iconified-button" to="/auth/sign-in">
|
|
<ReportIcon aria-hidden="true" />
|
|
{{ formatMessage(messages.profileReportButton) }}
|
|
</nuxt-link>
|
|
</div>
|
|
<template v-if="isEditing">
|
|
<div class="inputs universal-labels">
|
|
<label for="user-username">
|
|
<span class="label__title">
|
|
{{ formatMessage(messages.profileEditUsernameLabel) }}
|
|
</span>
|
|
</label>
|
|
<input id="user-username" v-model="user.username" maxlength="39" type="text" />
|
|
<label for="user-bio">
|
|
<span class="label__title">
|
|
{{ formatMessage(messages.profileEditBioLabel) }}
|
|
</span>
|
|
</label>
|
|
<div class="textarea-wrapper">
|
|
<textarea id="user-bio" v-model="user.bio" maxlength="160" />
|
|
</div>
|
|
</div>
|
|
<div class="button-group">
|
|
<button
|
|
class="iconified-button"
|
|
@click="
|
|
() => {
|
|
isEditing = false
|
|
user = JSON.parse(JSON.stringify(auth.user))
|
|
previewImage = null
|
|
icon = null
|
|
}
|
|
"
|
|
>
|
|
<CrossIcon /> {{ formatMessage(commonMessages.cancelButton) }}
|
|
</button>
|
|
<button class="iconified-button brand-button" @click="saveChanges">
|
|
<SaveIcon /> {{ formatMessage(commonMessages.saveButton) }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
<template v-else>
|
|
<div class="sidebar__item">
|
|
<Badge v-if="tags.staffRoles.includes(user.role)" :type="user.role" />
|
|
<Badge v-else-if="projects.length > 0" type="creator" />
|
|
</div>
|
|
<span v-if="user.bio" class="sidebar__item bio">{{ user.bio }}</span>
|
|
<hr class="card-divider" />
|
|
<div class="primary-stat">
|
|
<DownloadIcon class="primary-stat__icon" aria-hidden="true" />
|
|
<div class="primary-stat__text">
|
|
<IntlFormatted
|
|
:message-id="messages.profileDownloadsStats"
|
|
:values="{ count: formatCompactNumber(sumDownloads) }"
|
|
>
|
|
<template #stat="{ children }">
|
|
<span class="primary-stat__counter">
|
|
<component :is="() => normalizeChildren(children)" />
|
|
</span>
|
|
</template>
|
|
</IntlFormatted>
|
|
</div>
|
|
</div>
|
|
<div class="primary-stat">
|
|
<HeartIcon class="primary-stat__icon" aria-hidden="true" />
|
|
<div class="primary-stat__text">
|
|
<IntlFormatted
|
|
:message-id="messages.profileProjectsFollowersStats"
|
|
:values="{ count: formatCompactNumber(sumFollows) }"
|
|
>
|
|
<template #stat="{ children }">
|
|
<span class="primary-stat__counter">
|
|
<component :is="() => normalizeChildren(children)" />
|
|
</span>
|
|
</template>
|
|
</IntlFormatted>
|
|
</div>
|
|
</div>
|
|
<div class="stats-block__item secondary-stat">
|
|
<SunriseIcon class="secondary-stat__icon" aria-hidden="true" />
|
|
<span
|
|
v-tooltip="
|
|
formatMessage(commonMessages.dateAtTimeTooltip, {
|
|
date: new Date(user.created),
|
|
time: new Date(user.created),
|
|
})
|
|
"
|
|
class="secondary-stat__text date"
|
|
>
|
|
{{
|
|
formatMessage(messages.profileJoinedAt, { ago: formatRelativeTime(user.created) })
|
|
}}
|
|
</span>
|
|
</div>
|
|
<hr class="card-divider" />
|
|
<div class="stats-block__item secondary-stat">
|
|
<UserIcon class="secondary-stat__icon" aria-hidden="true" />
|
|
<span class="secondary-stat__text">
|
|
<IntlFormatted :message-id="messages.profileUserId">
|
|
<template #~id>
|
|
<CopyCode :text="user.id" />
|
|
</template>
|
|
</IntlFormatted>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
<div class="normal-page__content">
|
|
<Promotion />
|
|
<nav class="navigation-card">
|
|
<NavRow
|
|
:links="[
|
|
{
|
|
label: formatMessage(commonMessages.allProjectType),
|
|
href: `/user/${user.username}`,
|
|
},
|
|
...projectTypes.map((x) => {
|
|
return {
|
|
label: formatMessage(getProjectTypeMessage(x, true)),
|
|
href: `/user/${user.username}/${x}s`,
|
|
}
|
|
}),
|
|
]"
|
|
/>
|
|
<div class="input-group">
|
|
<NuxtLink
|
|
v-if="auth.user && auth.user.id === user.id"
|
|
class="iconified-button"
|
|
to="/dashboard/projects"
|
|
>
|
|
<SettingsIcon />
|
|
{{ formatMessage(messages.profileManageProjectsButton) }}
|
|
</NuxtLink>
|
|
<button
|
|
v-tooltip="
|
|
formatMessage(commonMessages[`${cosmetics.searchDisplayMode.user}InputView`])
|
|
"
|
|
:aria-label="
|
|
formatMessage(commonMessages[`${cosmetics.searchDisplayMode.user}InputView`])
|
|
"
|
|
class="square-button"
|
|
@click="cycleSearchDisplayMode()"
|
|
>
|
|
<GridIcon v-if="cosmetics.searchDisplayMode.user === 'grid'" />
|
|
<ImageIcon v-else-if="cosmetics.searchDisplayMode.user === 'gallery'" />
|
|
<ListIcon v-else />
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
<div v-if="projects.length > 0">
|
|
<div
|
|
v-if="route.params.projectType !== 'collections'"
|
|
:class="'project-list display-mode--' + cosmetics.searchDisplayMode.user"
|
|
>
|
|
<ProjectCard
|
|
v-for="project in (route.params.projectType !== undefined
|
|
? projects.filter(
|
|
(x) =>
|
|
x.project_type ===
|
|
route.params.projectType.substr(0, route.params.projectType.length - 1)
|
|
)
|
|
: projects
|
|
)
|
|
.slice()
|
|
.sort((a, b) => b.downloads - a.downloads)"
|
|
:id="project.slug || project.id"
|
|
:key="project.id"
|
|
:name="project.title"
|
|
:display="cosmetics.searchDisplayMode.user"
|
|
:featured-image="
|
|
project.gallery
|
|
.slice()
|
|
.sort((a, b) => b.featured - a.featured)
|
|
.map((x) => x.url)[0]
|
|
"
|
|
:description="project.description"
|
|
:created-at="project.published"
|
|
:updated-at="project.updated"
|
|
:downloads="project.downloads.toString()"
|
|
:follows="project.followers.toString()"
|
|
:icon-url="project.icon_url"
|
|
:categories="project.categories"
|
|
:client-side="project.client_side"
|
|
:server-side="project.server_side"
|
|
:status="
|
|
auth.user && (auth.user.id === user.id || tags.staffRoles.includes(auth.user.role))
|
|
? project.status
|
|
: null
|
|
"
|
|
:type="project.project_type"
|
|
:color="project.color"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div v-else-if="route.params.projectType !== 'collections'" class="error">
|
|
<UpToDate class="icon" /><br />
|
|
<span v-if="auth.user && auth.user.id === user.id" class="preserve-lines text">
|
|
<IntlFormatted :message-id="messages.profileNoProjectsAuthLabel">
|
|
<template #create-link="{ children }">
|
|
<a class="link" @click.prevent="$refs.modal_creation.show()">
|
|
<component :is="() => children" />
|
|
</a>
|
|
</template>
|
|
</IntlFormatted>
|
|
</span>
|
|
<span v-else class="text">{{ formatMessage(messages.profileNoProjectsLabel) }}</span>
|
|
</div>
|
|
<div v-if="['collections'].includes(route.params.projectType)" class="collections-grid">
|
|
<nuxt-link
|
|
v-for="collection in collections"
|
|
:key="collection.id"
|
|
:to="`/collection/${collection.id}`"
|
|
class="card collection-item"
|
|
>
|
|
<div class="collection">
|
|
<Avatar :src="collection.icon_url" class="icon" />
|
|
<div class="details">
|
|
<h2 class="title">{{ collection.name }}</h2>
|
|
<div class="stats">
|
|
<LibraryIcon />
|
|
Collection
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="description">
|
|
{{ collection.description }}
|
|
</div>
|
|
<div class="stat-bar">
|
|
<div class="stats"><BoxIcon /> {{ collection.projects?.length || 0 }} projects</div>
|
|
<div class="stats">
|
|
<template v-if="collection.status === 'listed'">
|
|
<WorldIcon />
|
|
<span> Public </span>
|
|
</template>
|
|
<template v-else-if="collection.status === 'unlisted'">
|
|
<LinkIcon />
|
|
<span> Unlisted </span>
|
|
</template>
|
|
<template v-else-if="collection.status === 'private'">
|
|
<LockIcon />
|
|
<span> Private </span>
|
|
</template>
|
|
<template v-else-if="collection.status === 'rejected'">
|
|
<XIcon />
|
|
<span> Rejected </span>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</nuxt-link>
|
|
</div>
|
|
<div
|
|
v-if="route.params.projectType === 'collections' && collections.length === 0"
|
|
class="error"
|
|
>
|
|
<UpToDate class="icon" /><br />
|
|
<span v-if="auth.user && auth.user.id === user.id" class="preserve-lines text">
|
|
<IntlFormatted :message-id="messages.profileNoCollectionsAuthLabel">
|
|
<template #create-link="{ children }">
|
|
<a class="link" @click.prevent="$refs.modal_collection_creation.show()">
|
|
<component :is="() => children" />
|
|
</a>
|
|
</template>
|
|
</IntlFormatted>
|
|
</span>
|
|
<span v-else class="text">{{ formatMessage(messages.profileNoCollectionsLabel) }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { Promotion, LibraryIcon, BoxIcon, LinkIcon, LockIcon, XIcon } from 'omorphia'
|
|
import ProjectCard from '~/components/ui/ProjectCard.vue'
|
|
import Badge from '~/components/ui/Badge.vue'
|
|
import { reportUser } from '~/utils/report-helpers.ts'
|
|
|
|
import ReportIcon from '~/assets/images/utils/report.svg'
|
|
import SunriseIcon from '~/assets/images/utils/sunrise.svg'
|
|
import DownloadIcon from '~/assets/images/utils/download.svg'
|
|
import SettingsIcon from '~/assets/images/utils/settings.svg'
|
|
import UpToDate from '~/assets/images/illustrations/up_to_date.svg'
|
|
import UserIcon from '~/assets/images/utils/user.svg'
|
|
import EditIcon from '~/assets/images/utils/edit.svg'
|
|
import HeartIcon from '~/assets/images/utils/heart.svg'
|
|
import CrossIcon from '~/assets/images/utils/x.svg'
|
|
import SaveIcon from '~/assets/images/utils/save.svg'
|
|
import GridIcon from '~/assets/images/utils/grid.svg'
|
|
import ListIcon from '~/assets/images/utils/list.svg'
|
|
import ImageIcon from '~/assets/images/utils/image.svg'
|
|
import UploadIcon from '~/assets/images/utils/upload.svg'
|
|
import WorldIcon from '~/assets/images/utils/world.svg'
|
|
import FileInput from '~/components/ui/FileInput.vue'
|
|
import ModalCreation from '~/components/ui/ModalCreation.vue'
|
|
import NavRow from '~/components/ui/NavRow.vue'
|
|
import CopyCode from '~/components/ui/CopyCode.vue'
|
|
import Avatar from '~/components/ui/Avatar.vue'
|
|
import CollectionCreateModal from '~/components/ui/CollectionCreateModal.vue'
|
|
|
|
const data = useNuxtApp()
|
|
const route = useRoute()
|
|
const auth = await useAuth()
|
|
const cosmetics = useCosmetics()
|
|
const tags = useTags()
|
|
|
|
const vintl = useVIntl()
|
|
const { formatMessage } = vintl
|
|
|
|
const formatCompactNumber = useCompactNumber()
|
|
|
|
const formatRelativeTime = useRelativeTime()
|
|
|
|
const messages = defineMessages({
|
|
profileDownloadsStats: {
|
|
id: 'profile.stats.downloads',
|
|
defaultMessage:
|
|
'{count, plural, one {<stat>{count}</stat> download} other {<stat>{count}</stat> downloads}}',
|
|
},
|
|
profileProjectsFollowersStats: {
|
|
id: 'profile.stats.projects-followers',
|
|
defaultMessage:
|
|
'{count, plural, one {<stat>{count}</stat> follower} other {<stat>{count}</stat> followers}} of projects',
|
|
},
|
|
profileJoinedAt: {
|
|
id: 'profile.joined-at',
|
|
defaultMessage: 'Joined {ago}',
|
|
},
|
|
profileUserId: {
|
|
id: 'profile.user-id',
|
|
defaultMessage: 'User ID: {id}',
|
|
},
|
|
profileManageProjectsButton: {
|
|
id: 'profile.button.manage-projects',
|
|
defaultMessage: 'Manage projects',
|
|
},
|
|
profileMetaDescription: {
|
|
id: 'profile.meta.description',
|
|
defaultMessage: "Download {username}'s projects on Modrinth",
|
|
},
|
|
profileMetaDescriptionWithBio: {
|
|
id: 'profile.meta.description-with-bio',
|
|
defaultMessage: "{bio} - Download {username}'s projects on Modrinth",
|
|
},
|
|
profileReportButton: {
|
|
id: 'profile.button.report',
|
|
defaultMessage: 'Report',
|
|
},
|
|
profileUploadAvatarInput: {
|
|
id: 'profile.input.upload-avatar',
|
|
defaultMessage: 'Upload avatar',
|
|
},
|
|
profileEditUsernameLabel: {
|
|
id: 'profile.label.edit-username',
|
|
defaultMessage: 'Username',
|
|
},
|
|
profileEditBioLabel: {
|
|
id: 'profile.label.edit-bio',
|
|
defaultMessage: 'Bio',
|
|
},
|
|
profileNoProjectsLabel: {
|
|
id: 'profile.label.no-projects',
|
|
defaultMessage: 'This user has no projects!',
|
|
},
|
|
profileNoProjectsAuthLabel: {
|
|
id: 'profile.label.no-projects-auth',
|
|
defaultMessage:
|
|
"You don't have any projects.\nWould you like to <create-link>create one</create-link>?",
|
|
},
|
|
profileNoCollectionsLabel: {
|
|
id: 'profile.label.no-collections',
|
|
defaultMessage: 'This user has no collection!',
|
|
},
|
|
profileNoCollectionsAuthLabel: {
|
|
id: 'profile.label.no-collections-auth',
|
|
defaultMessage:
|
|
"You don't have any collections.\nWould you like to <create-link>create one</create-link>?",
|
|
},
|
|
userNotFoundError: {
|
|
id: 'profile.error.not-found',
|
|
defaultMessage: 'User not found',
|
|
},
|
|
})
|
|
|
|
let user, projects, collections
|
|
try {
|
|
;[{ data: user }, { data: projects }, { data: collections }] = await Promise.all([
|
|
useAsyncData(`user/${route.params.id}`, () => useBaseFetch(`user/${route.params.id}`)),
|
|
useAsyncData(
|
|
`user/${route.params.id}/projects`,
|
|
() => useBaseFetch(`user/${route.params.id}/projects`),
|
|
{
|
|
transform: (projects) => {
|
|
for (const project of projects) {
|
|
project.categories = project.categories.concat(project.loaders)
|
|
project.project_type = data.$getProjectTypeForUrl(
|
|
project.project_type,
|
|
project.categories,
|
|
tags.value
|
|
)
|
|
}
|
|
|
|
return projects
|
|
},
|
|
}
|
|
),
|
|
useAsyncData(`user/${route.params.id}/collections`, () =>
|
|
useBaseFetch(`user/${route.params.id}/collections`, { apiVersion: 3 })
|
|
),
|
|
])
|
|
} catch {
|
|
throw createError({
|
|
fatal: true,
|
|
statusCode: 404,
|
|
message: formatMessage(messages.userNotFoundError),
|
|
})
|
|
}
|
|
|
|
if (!user.value) {
|
|
throw createError({
|
|
fatal: true,
|
|
statusCode: 404,
|
|
message: formatMessage(messages.userNotFoundError),
|
|
})
|
|
}
|
|
|
|
if (user.value.username !== route.params.id) {
|
|
await navigateTo(`/user/${user.value.username}`, { redirectCode: 301 })
|
|
}
|
|
|
|
const title = computed(() => `${user.value.username} - Modrinth`)
|
|
const description = computed(() =>
|
|
user.value.bio
|
|
? formatMessage(messages.profileMetaDescriptionWithBio, {
|
|
bio: user.value.bio,
|
|
username: user.value.username,
|
|
})
|
|
: formatMessage(messages.profileMetaDescription, { username: user.value.username })
|
|
)
|
|
|
|
useSeoMeta({
|
|
title: () => title.value,
|
|
description: () => description.value,
|
|
ogTitle: () => title.value,
|
|
ogDescription: () => description.value,
|
|
ogImage: () => user.value.avatar_url ?? 'https://cdn.modrinth.com/placeholder.png',
|
|
})
|
|
|
|
const projectTypes = computed(() => {
|
|
const obj = { collection: true }
|
|
|
|
for (const project of projects.value) {
|
|
obj[project.project_type] = true
|
|
}
|
|
|
|
return Object.keys(obj)
|
|
})
|
|
const sumDownloads = computed(() => {
|
|
let sum = 0
|
|
|
|
for (const project of projects.value) {
|
|
sum += project.downloads
|
|
}
|
|
|
|
return sum
|
|
})
|
|
const sumFollows = computed(() => {
|
|
let sum = 0
|
|
|
|
for (const project of projects.value) {
|
|
sum += project.followers
|
|
}
|
|
|
|
return sum
|
|
})
|
|
|
|
const isEditing = ref(false)
|
|
const icon = shallowRef(null)
|
|
const previewImage = shallowRef(null)
|
|
|
|
function showPreviewImage(files) {
|
|
const reader = new FileReader()
|
|
icon.value = files[0]
|
|
reader.readAsDataURL(icon.value)
|
|
reader.onload = (event) => {
|
|
previewImage.value = event.target.result
|
|
}
|
|
}
|
|
|
|
async function saveChanges() {
|
|
startLoading()
|
|
try {
|
|
if (icon.value) {
|
|
await useBaseFetch(
|
|
`user/${auth.value.user.id}/icon?ext=${
|
|
icon.value.type.split('/')[icon.value.type.split('/').length - 1]
|
|
}`,
|
|
{
|
|
method: 'PATCH',
|
|
body: icon.value,
|
|
}
|
|
)
|
|
}
|
|
|
|
const reqData = {
|
|
email: user.value.email,
|
|
bio: user.value.bio,
|
|
}
|
|
if (user.value.username !== auth.value.user.username) {
|
|
reqData.username = user.value.username
|
|
}
|
|
|
|
await useBaseFetch(`user/${auth.value.user.id}`, {
|
|
method: 'PATCH',
|
|
body: reqData,
|
|
})
|
|
await useAuth(auth.value.token)
|
|
|
|
isEditing.value = false
|
|
} catch (err) {
|
|
console.error(err)
|
|
data.$notify({
|
|
group: 'main',
|
|
title: formatMessage(commonMessages.errorNotificationTitle),
|
|
text: err.data.description,
|
|
type: 'error',
|
|
})
|
|
}
|
|
stopLoading()
|
|
}
|
|
|
|
function cycleSearchDisplayMode() {
|
|
cosmetics.value.searchDisplayMode.user = data.$cycleValue(
|
|
cosmetics.value.searchDisplayMode.user,
|
|
tags.value.projectViewModes
|
|
)
|
|
saveCosmetics()
|
|
}
|
|
</script>
|
|
<script>
|
|
export default defineNuxtComponent({
|
|
methods: {},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.collections-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--gap-lg);
|
|
|
|
.collection-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--gap-md);
|
|
}
|
|
|
|
.description {
|
|
// Grow to take up remaining space
|
|
flex-grow: 1;
|
|
|
|
color: var(--color-text);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.stat-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--gap-md);
|
|
margin-top: auto;
|
|
}
|
|
|
|
.stats {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--gap-xs);
|
|
|
|
svg {
|
|
color: var(--color-secondary);
|
|
}
|
|
}
|
|
|
|
.collection {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: var(--gap-md);
|
|
|
|
.icon {
|
|
width: 100% !important;
|
|
height: 6rem !important;
|
|
max-width: unset !important;
|
|
max-height: unset !important;
|
|
aspect-ratio: 1 / 1;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--gap-sm);
|
|
|
|
.title {
|
|
color: var(--color-contrast);
|
|
font-weight: 600;
|
|
font-size: var(--font-size-lg);
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.user-header-wrapper {
|
|
display: flex;
|
|
margin: 0 auto -1.5rem;
|
|
max-width: 80rem;
|
|
|
|
.user-header {
|
|
position: relative;
|
|
z-index: 4;
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 0 1rem;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
|
|
.username {
|
|
display: none;
|
|
font-size: 2rem;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mobile-username {
|
|
margin: 0.25rem 0;
|
|
}
|
|
|
|
@media screen and (min-width: 501px) {
|
|
.mobile-username {
|
|
display: none;
|
|
}
|
|
|
|
.user-header-wrapper .user-header .username {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.sidebar {
|
|
padding-top: 2.5rem;
|
|
}
|
|
|
|
.sidebar__item:not(:last-child) {
|
|
margin: 0 0 0.75rem 0;
|
|
}
|
|
|
|
.profile-picture {
|
|
border-radius: var(--size-rounded-lg);
|
|
height: 8rem;
|
|
width: 8rem;
|
|
}
|
|
|
|
.username {
|
|
font-size: var(--font-size-xl);
|
|
}
|
|
|
|
.bio {
|
|
display: block;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.secondary-stat {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-bottom: 0.8rem;
|
|
}
|
|
|
|
.secondary-stat__icon {
|
|
height: 1rem;
|
|
width: 1rem;
|
|
}
|
|
|
|
.secondary-stat__text {
|
|
margin-left: 0.4rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.date {
|
|
cursor: default;
|
|
}
|
|
|
|
.inputs {
|
|
margin-bottom: 1rem;
|
|
|
|
input {
|
|
margin-top: 0.5rem;
|
|
width: 100%;
|
|
}
|
|
|
|
label {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.textarea-wrapper {
|
|
height: 10rem;
|
|
}
|
|
|
|
@media (max-width: 400px) {
|
|
.sidebar {
|
|
padding-top: 3rem;
|
|
}
|
|
}
|
|
</style>
|