mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 11:43:08 +02:00
30 lines
385 B
Vue
30 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>
|