1
0
mirror of https://github.com/hotomoe/hotomoe synced 2025-01-19 08:12:51 +09:00

migrate: apply previous repository changes (#9)

* Add code owners

* enhance(MkUserOnlineIndicator): indicator is not visible if 'unknown'

* fix(MkError): remove unnecessary width value
This commit is contained in:
オスカー、 2024-05-10 17:31:39 +09:00 committed by 무라쿠모
parent 693cc1e1a2
commit ec43f69bf7
Signed by: SWREI
GPG Key ID: 139D6573F92DA9F7
3 changed files with 2 additions and 2 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@ -0,0 +1 @@
* @hotomoe/maintainer

View File

@ -5,12 +5,12 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div
v-if="user.onlineStatus !== 'unknown'"
v-tooltip="text"
:class="[$style.root, {
[$style.status_online]: user.onlineStatus === 'online',
[$style.status_active]: user.onlineStatus === 'active',
[$style.status_offline]: user.onlineStatus === 'offline',
[$style.status_unknown]: user.onlineStatus === 'unknown',
}]"
></div>
</template>

View File

@ -41,7 +41,6 @@ const emit = defineEmits<{
.img {
vertical-align: bottom;
width: 128px;
height: 128px;
margin-bottom: 16px;
border-radius: 16px;