Merge branch 'fix/tos-panel-rendering' into 'develop'
Fix styling of ToS panel for consistency See merge request pleroma/pleroma-fe!1244
This commit is contained in:
commit
ec177e0129
2 changed files with 16 additions and 8 deletions
src
|
@ -1,14 +1,19 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<!-- eslint-disable vue/no-v-html -->
|
||||
<div
|
||||
class="tos-content"
|
||||
v-html="content"
|
||||
/>
|
||||
<!-- eslint-enable vue/no-v-html -->
|
||||
<div class="panel panel-default base01-background">
|
||||
<div class="panel-heading timeline-heading base02-background">
|
||||
<div class="panel-body">
|
||||
<div class="title">
|
||||
{{ $t('tos_panel.title') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- eslint-disable vue/no-v-html -->
|
||||
<div
|
||||
class="tos-content"
|
||||
v-html="content"
|
||||
/>
|
||||
<!-- eslint-enable vue/no-v-html -->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -715,6 +715,9 @@
|
|||
"year_short": "{0}y",
|
||||
"years_short": "{0}y"
|
||||
},
|
||||
"tos_panel": {
|
||||
"title": "Terms of Service"
|
||||
},
|
||||
"timeline": {
|
||||
"collapse": "Collapse",
|
||||
"conversation": "Conversation",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue