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:
parent
693cc1e1a2
commit
ec43f69bf7
1
.github/CODEOWNERS
vendored
Normal file
1
.github/CODEOWNERS
vendored
Normal file
@ -0,0 +1 @@
|
||||
* @hotomoe/maintainer
|
@ -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>
|
||||
|
@ -41,7 +41,6 @@ const emit = defineEmits<{
|
||||
|
||||
.img {
|
||||
vertical-align: bottom;
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
margin-bottom: 16px;
|
||||
border-radius: 16px;
|
||||
|
Loading…
Reference in New Issue
Block a user