2020-07-11 04:13:11 +03:00
|
|
|
<template>
|
2021-12-03 15:09:40 +02:00
|
|
|
<div class="mvcprjjd" :class="{ iconOnly }">
|
2022-07-05 16:35:57 +03:00
|
|
|
<div class="body">
|
2022-07-15 16:09:05 +03:00
|
|
|
<div class="top">
|
|
|
|
<div class="banner" :style="{ backgroundImage: `url(${ $instance.bannerUrl })` }"></div>
|
2022-07-16 07:49:23 +03:00
|
|
|
<button v-click-anime v-tooltip.noDelay.right="$instance.name ?? i18n.ts.instance" class="item _button instance" @click="openInstanceMenu">
|
2022-07-15 16:09:05 +03:00
|
|
|
<img :src="$instance.iconUrl || $instance.faviconUrl || '/favicon.ico'" alt="" class="icon"/>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="middle">
|
2022-07-16 07:49:23 +03:00
|
|
|
<MkA v-click-anime v-tooltip.noDelay.right="i18n.ts.timeline" class="item index" active-class="active" to="/" exact>
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="icon ti ti-home ti-fw"></i><span class="text">{{ i18n.ts.timeline }}</span>
|
2022-07-15 16:09:05 +03:00
|
|
|
</MkA>
|
|
|
|
<template v-for="item in menu">
|
|
|
|
<div v-if="item === '-'" class="divider"></div>
|
|
|
|
<component
|
|
|
|
:is="navbarItemDef[item].to ? 'MkA' : 'button'"
|
|
|
|
v-else-if="navbarItemDef[item] && (navbarItemDef[item].show !== false)"
|
|
|
|
v-click-anime
|
2023-01-05 06:59:48 +02:00
|
|
|
v-tooltip.noDelay.right="navbarItemDef[item].title"
|
2022-07-15 16:09:05 +03:00
|
|
|
class="item _button"
|
|
|
|
:class="[item, { active: navbarItemDef[item].active }]"
|
|
|
|
active-class="active"
|
|
|
|
:to="navbarItemDef[item].to"
|
|
|
|
v-on="navbarItemDef[item].action ? { click: navbarItemDef[item].action } : {}"
|
|
|
|
>
|
2023-01-05 06:59:48 +02:00
|
|
|
<i class="icon ti-fw" :class="navbarItemDef[item].icon"></i><span class="text">{{ navbarItemDef[item].title }}</span>
|
2022-12-19 12:01:30 +02:00
|
|
|
<span v-if="navbarItemDef[item].indicated" class="indicator"><i class="icon _indicatorCircle"></i></span>
|
2022-07-15 16:09:05 +03:00
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
<div class="divider"></div>
|
2022-07-16 07:49:23 +03:00
|
|
|
<MkA v-if="$i.isAdmin || $i.isModerator" v-click-anime v-tooltip.noDelay.right="i18n.ts.controlPanel" class="item" active-class="active" to="/admin">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="icon ti ti-dashboard ti-fw"></i><span class="text">{{ i18n.ts.controlPanel }}</span>
|
2022-07-15 16:09:05 +03:00
|
|
|
</MkA>
|
|
|
|
<button v-click-anime class="item _button" @click="more">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="icon ti ti-grid-dots ti-fw"></i><span class="text">{{ i18n.ts.more }}</span>
|
|
|
|
<span v-if="otherMenuItemIndicated" class="indicator"><i class="icon _indicatorCircle"></i></span>
|
2022-07-15 16:09:05 +03:00
|
|
|
</button>
|
2022-07-16 07:49:23 +03:00
|
|
|
<MkA v-click-anime v-tooltip.noDelay.right="i18n.ts.settings" class="item" active-class="active" to="/settings">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="icon ti ti-settings ti-fw"></i><span class="text">{{ i18n.ts.settings }}</span>
|
2022-07-15 16:09:05 +03:00
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
<div class="bottom">
|
2022-07-16 07:49:23 +03:00
|
|
|
<button v-tooltip.noDelay.right="i18n.ts.note" class="item _button post" data-cy-open-post-form @click="os.post">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="icon ti ti-pencil ti-fw"></i><span class="text">{{ i18n.ts.note }}</span>
|
2022-07-15 16:09:05 +03:00
|
|
|
</button>
|
2022-07-16 16:16:01 +03:00
|
|
|
<button v-click-anime v-tooltip.noDelay.right="`${i18n.ts.account}: @${$i.username}`" class="item _button account" @click="openAccountMenu">
|
2022-07-15 16:09:05 +03:00
|
|
|
<MkAvatar :user="$i" class="avatar"/><MkAcct class="text" :user="$i"/>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-12-03 15:09:40 +02:00
|
|
|
</div>
|
2020-07-11 04:13:11 +03:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
<script lang="ts" setup>
|
2022-05-01 16:51:07 +03:00
|
|
|
import { computed, defineAsyncComponent, ref, watch } from 'vue';
|
2022-12-28 06:29:42 +02:00
|
|
|
import { openInstanceMenu } from './common';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-07-14 11:42:12 +03:00
|
|
|
import { navbarItemDef } from '@/navbar';
|
2022-02-23 16:40:31 +02:00
|
|
|
import { $i, openAccountMenu as openAccountMenu_ } from '@/account';
|
2021-12-03 15:09:40 +02:00
|
|
|
import { defaultStore } from '@/store';
|
2022-07-14 11:52:59 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
const iconOnly = ref(false);
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
const menu = computed(() => defaultStore.state.menu);
|
|
|
|
const otherMenuItemIndicated = computed(() => {
|
2022-07-14 11:42:12 +03:00
|
|
|
for (const def in navbarItemDef) {
|
2022-02-23 16:40:31 +02:00
|
|
|
if (menu.value.includes(def)) continue;
|
2022-07-14 11:42:12 +03:00
|
|
|
if (navbarItemDef[def].indicated) return true;
|
2022-02-23 16:40:31 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
const calcViewState = () => {
|
|
|
|
iconOnly.value = (window.innerWidth <= 1279) || (defaultStore.state.menuDisplay === 'sideIcon');
|
|
|
|
};
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
calcViewState();
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
window.addEventListener('resize', calcViewState);
|
2021-02-14 15:26:07 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
watch(defaultStore.reactiveState.menuDisplay, () => {
|
|
|
|
calcViewState();
|
2021-12-03 15:09:40 +02:00
|
|
|
});
|
2022-02-23 16:40:31 +02:00
|
|
|
|
|
|
|
function openAccountMenu(ev: MouseEvent) {
|
|
|
|
openAccountMenu_({
|
|
|
|
withExtraOperation: true,
|
|
|
|
}, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
function more(ev: MouseEvent) {
|
2022-08-30 18:24:33 +03:00
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkLaunchPad.vue')), {
|
2022-02-23 16:40:31 +02:00
|
|
|
src: ev.currentTarget ?? ev.target,
|
|
|
|
}, {
|
|
|
|
}, 'closed');
|
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
</script>
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2021-12-03 15:09:40 +02:00
|
|
|
.mvcprjjd {
|
|
|
|
$nav-width: 250px;
|
2022-07-18 12:41:17 +03:00
|
|
|
$nav-icon-only-width: 80px;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
flex: 0 0 $nav-width;
|
|
|
|
width: $nav-width;
|
|
|
|
box-sizing: border-box;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-05 16:35:57 +03:00
|
|
|
> .body {
|
2021-12-03 15:09:40 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1001;
|
2022-07-15 16:09:05 +03:00
|
|
|
width: $nav-icon-only-width;
|
2022-11-13 04:43:23 +02:00
|
|
|
height: 100dvh;
|
2021-12-03 15:09:40 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
overflow: auto;
|
|
|
|
overflow-x: clip;
|
|
|
|
background: var(--navBg);
|
2022-07-05 16:35:57 +03:00
|
|
|
contain: strict;
|
2022-07-15 16:09:05 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
&:not(.iconOnly) {
|
|
|
|
> .body {
|
|
|
|
width: $nav-width;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .top {
|
|
|
|
position: sticky;
|
2021-12-03 15:09:40 +02:00
|
|
|
top: 0;
|
2022-07-15 16:09:05 +03:00
|
|
|
z-index: 1;
|
|
|
|
padding: 20px 0;
|
|
|
|
background: var(--X14);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(8px));
|
2021-12-25 09:03:57 +02:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .banner {
|
2021-12-03 15:09:40 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2022-07-15 16:09:05 +03:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
|
|
|
-webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0) 15%, rgba(0,0,0,0.75) 100%);
|
|
|
|
mask-image: linear-gradient(0deg, rgba(0,0,0,0) 15%, rgba(0,0,0,0.75) 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .instance {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 38px;
|
|
|
|
aspect-ratio: 1;
|
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .bottom {
|
2021-12-03 15:09:40 +02:00
|
|
|
position: sticky;
|
2022-07-15 16:09:05 +03:00
|
|
|
bottom: 0;
|
|
|
|
padding: 20px 0;
|
2021-12-03 15:09:40 +02:00
|
|
|
background: var(--X14);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(8px));
|
2020-08-01 04:53:23 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .post {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
color: var(--fgOnAccent);
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: left;
|
2020-08-01 04:53:23 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:before {
|
2022-07-15 16:09:05 +03:00
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: calc(100% - 38px);
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-radius: 999px;
|
|
|
|
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &.active {
|
|
|
|
&:before {
|
|
|
|
background: var(--accentLighten);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
position: relative;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-right: 8px;
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .account {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding-left: 30px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
position: relative;
|
|
|
|
width: 32px;
|
|
|
|
aspect-ratio: 1;
|
|
|
|
margin-right: 8px;
|
2020-08-01 04:53:23 +03:00
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .middle {
|
|
|
|
flex: 1;
|
2020-08-01 04:53:23 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .divider {
|
|
|
|
margin: 16px 16px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
2022-07-15 16:09:05 +03:00
|
|
|
|
|
|
|
> .item {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
padding-left: 30px;
|
|
|
|
line-height: 2.85rem;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: var(--navFg);
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
position: relative;
|
|
|
|
width: 32px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .indicator {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 20px;
|
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
position: relative;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--navHoverFg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--navActive);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &.active {
|
|
|
|
color: var(--accent);
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: calc(100% - 34px);
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-radius: 999px;
|
|
|
|
background: var(--accentedBg);
|
|
|
|
}
|
2020-08-01 04:53:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&.iconOnly {
|
|
|
|
flex: 0 0 $nav-icon-only-width;
|
|
|
|
width: $nav-icon-only-width;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-05 16:35:57 +03:00
|
|
|
> .body {
|
2021-12-03 15:09:40 +02:00
|
|
|
width: $nav-icon-only-width;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .top {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
padding: 20px 0;
|
|
|
|
background: var(--X14);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(8px));
|
|
|
|
|
|
|
|
> .instance {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
display: inline-block;
|
2022-07-16 07:13:58 +03:00
|
|
|
width: 30px;
|
2022-07-15 16:09:05 +03:00
|
|
|
aspect-ratio: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .bottom {
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 20px 0;
|
|
|
|
background: var(--X14);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(8px));
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .post {
|
2021-12-03 15:09:40 +02:00
|
|
|
display: block;
|
2022-07-15 16:09:05 +03:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 52px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
text-align: center;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: 52px;
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
border-radius: 100%;
|
|
|
|
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
&:hover, &.active {
|
|
|
|
&:before {
|
|
|
|
background: var(--accentLighten);
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .icon {
|
|
|
|
position: relative;
|
|
|
|
color: var(--fgOnAccent);
|
2021-09-20 20:01:25 +03:00
|
|
|
}
|
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .text {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .account {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
display: inline-block;
|
|
|
|
width: 38px;
|
|
|
|
aspect-ratio: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
2022-07-15 16:09:05 +03:00
|
|
|
}
|
2021-09-20 20:01:25 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .middle {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
margin: 8px auto;
|
|
|
|
width: calc(100% - 32px);
|
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .item {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
padding: 18px 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2021-12-04 11:27:31 +02:00
|
|
|
|
2022-07-05 16:35:57 +03:00
|
|
|
> .icon {
|
2022-07-15 16:09:05 +03:00
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
display: none;
|
2021-12-04 11:27:31 +02:00
|
|
|
}
|
2021-09-20 20:01:25 +03:00
|
|
|
|
2022-07-15 16:09:05 +03:00
|
|
|
> .indicator {
|
|
|
|
position: absolute;
|
|
|
|
top: 6px;
|
|
|
|
left: 24px;
|
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &.active {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--accent);
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
aspect-ratio: 1;
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-radius: 999px;
|
|
|
|
background: var(--accentedBg);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon, > .text {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|