Merge branch 'develop'
This commit is contained in:
commit
723d3e6871
146 changed files with 1813 additions and 899 deletions
|
|
@ -215,11 +215,6 @@ export default Vue.extend({
|
|||
@media (min-width 500px)
|
||||
padding 28px 32px 18px 32px
|
||||
|
||||
&:after
|
||||
content ""
|
||||
display block
|
||||
clear both
|
||||
|
||||
> header
|
||||
display flex
|
||||
line-height 1.1em
|
||||
|
|
@ -236,6 +231,7 @@ export default Vue.extend({
|
|||
height 60px
|
||||
|
||||
> div
|
||||
min-width 0
|
||||
|
||||
> .name
|
||||
display inline-block
|
||||
|
|
|
|||
|
|
@ -43,7 +43,8 @@
|
|||
<div class="announcements" v-if="announcements && announcements.length > 0">
|
||||
<article v-for="announcement in announcements">
|
||||
<span v-html="announcement.title" class="title"></span>
|
||||
<div v-html="announcement.text"></div>
|
||||
<mfm :text="announcement.text"/>
|
||||
<img v-if="announcement.image" :src="announcement.image" alt="" style="display: block; max-height: 120px; max-width: 100%;"/>
|
||||
</article>
|
||||
</div>
|
||||
<a :href="aboutUrl"><p class="about">{{ $t('about') }}</p></a>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,8 @@
|
|||
<div class="announcements" v-if="announcements && announcements.length > 0">
|
||||
<article v-for="announcement in announcements">
|
||||
<span class="title" v-html="announcement.title"></span>
|
||||
<div v-html="announcement.text"></div>
|
||||
<mfm :text="announcement.text"/>
|
||||
<img v-if="announcement.image" :src="announcement.image" alt="" style="display: block; max-height: 120px; max-width: 100%;"/>
|
||||
</article>
|
||||
</div>
|
||||
<article class="about-misskey">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue