@@ -46,50 +46,90 @@ onBeforeUnmount(() => {
4646
4747<template >
4848 <main un-grid un-place-items =" center" >
49- <div un-flex un-size =" max" un-flex-col un-items =" center" un-gap =" 6" >
50- <h1 un-text =" 4xl" >AviUtl2 User Portal</h1 >
51- <nav id =" nav" un-flex un-gap =" 3" un-justify =" center" >
49+ <div
50+ un-flex
51+ un-size =" max"
52+ un-flex-col
53+ un-items =" center"
54+ un-gap =" 6"
55+ un-px =" 4"
56+ md:un-px =" 0"
57+ un-w =" full"
58+ md:un-w =" auto"
59+ >
60+ <h1 un-text =" 3xl md:4xl" >AviUtl2 User Portal</h1 >
61+ <nav
62+ id =" nav"
63+ aria-label =" 主要リンク"
64+ un-flex =" ~ col md:row"
65+ un-items =" center"
66+ un-justify =" center"
67+ un-gap =" 2"
68+ un-w =" full"
69+ >
5270 <template v-for =" (item , index ) in data " :key =" index " >
5371 <a
5472 v-if =" item.type === 'link'"
5573 :href =" item.url"
5674 target =" _blank"
57- un-text =" hover:underline"
58- >{{ item.title }}</a
75+ rel =" noreferrer"
76+ :un-font =" item.official ? 'bold' : 'normal'"
77+ >
78+ {{ item.title }}
79+ </a >
80+ <a
81+ v-else-if =" item.type === 'section'"
82+ role =" button"
83+ un-cursor =" pointer"
84+ @click =" openSection(item)"
5985 >
60- <a v-else-if =" item.type === 'section'" @click =" openSection(item)" >
6186 {{ item.title }}
6287 </a >
63- <span v-if =" index < data.length - 1" >|</span >
88+ <span
89+ v-if =" index < data.length - 1"
90+ un-hidden =" ~"
91+ un-inline-block =" md:~"
92+ >
93+ |
94+ </span >
6495 </template >
6596 </nav >
6697 </div >
6798 </main >
6899 <SectionInfo :section =" section" @close =" closeSection" />
69100 <AboutDialog :open =" showAbout" @close =" closeAbout" />
70101 <footer
71- un-text =" sm slate-500"
102+ un-text =" sm slate-500 center "
72103 un-py =" 6"
73104 un-bg =" white/50"
74105 un-backdrop-blur =" md"
75- un-gap =" 4"
76- un-flex
106+ un-gap =" 3"
107+ md:un-gap =" 4"
108+ un-flex =" ~ col md:row"
109+ un-items =" center"
77110 un-justify =" center"
78111 >
79112 <span
80113 >Created by
81- <a href =" https://sevenc7c.com" target =" _blank" un-text =" [#48b0d5]"
114+ <a
115+ href =" https://sevenc7c.com"
116+ target =" _blank"
117+ rel =" noreferrer"
118+ un-text =" [#48b0d5]"
82119 >Nanashi.</a
83120 ></span
84121 >
85- |
122+ < span aria-hidden = " true " un-hidden un-inline-block = " md:~ " > | </ span >
86123 <span
87124 >Source Available on
88- <a href =" https://github.com/aviutl2/aviutl2-jp" target =" _blank"
125+ <a
126+ href =" https://github.com/aviutl2/aviutl2-jp"
127+ target =" _blank"
128+ rel =" noreferrer"
89129 >GitHub</a
90130 ></span
91131 >
92- |
132+ < span aria-hidden = " true " un-hidden un-inline-block = " md:~ " > | </ span >
93133 <a
94134 type =" button"
95135 un-cursor =" pointer"
0 commit comments