mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 05:26:39 +01:00
29 lines
385 B
Vue
29 lines
385 B
Vue
<template>
|
|
<div class="mkw-nav">
|
|
<mk-nav-links/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import define from '../../../define-widget';
|
|
export default define({
|
|
name: 'nav'
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.mkw-nav
|
|
padding 16px
|
|
font-size 12px
|
|
color #aaa
|
|
background #fff
|
|
border solid 1px rgba(0, 0, 0, 0.075)
|
|
border-radius 6px
|
|
|
|
a
|
|
color #999
|
|
|
|
i
|
|
color #ccc
|
|
|
|
</style>
|