mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
style: different borders for Following and Mutuals
This commit is contained in:
parent
ecb61a7a30
commit
6ffe3fe02d
2 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,7 @@ useCommand({
|
|||
gap-1 items-center group
|
||||
:disabled="relationship?.requested"
|
||||
border-1
|
||||
rounded-full flex="~ gap2 center" font-500 w-30 h-fit py1 :class="relationship?.following ? 'text-base border-text-base' : 'text-inverted bg-primary border-primary'" :hover="relationship?.following ? 'border-red text-red' : 'bg-base border-primary text-primary'" @click="toggleFollow"
|
||||
rounded-full flex="~ gap2 center" font-500 w-30 h-fit py1 :class="relationship?.following ? (`text-base ${relationship?.followedBy ? 'border-strong' : 'border-base'}`) : 'text-inverted bg-primary border-primary'" :hover="relationship?.following ? 'border-red text-red' : 'bg-base border-primary text-primary'" @click="toggleFollow"
|
||||
>
|
||||
<template v-if="relationship?.following">
|
||||
<span group-hover="hidden">{{ relationship?.followedBy ? $t('account.mutuals') : $t('account.following') }}</span>
|
||||
|
|
|
@ -13,6 +13,7 @@ export default defineConfig({
|
|||
shortcuts: [
|
||||
{
|
||||
'border-base': 'border-$c-border',
|
||||
'border-strong': 'border-$c-text-base',
|
||||
'border-bg-base': 'border-$c-bg-base',
|
||||
|
||||
// background
|
||||
|
|
Loading…
Reference in a new issue