diff options
Diffstat (limited to 'apps/dashboard/src/App.vue')
-rw-r--r-- | apps/dashboard/src/App.vue | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index 3c4644df47b..fdf9f1e716f 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -27,7 +27,7 @@ <a v-tooltip="tooltip" class="edit-panels icon-add" :class="{ firstrun: firstRun }" - @click="showModal">{{ t('dashboard', 'Edit widgets') }}</a> + @click="showModal">{{ t('dashboard', 'Customize') }}</a> <Modal v-if="modal" @close="closeModal"> <div class="modal__content"> @@ -50,6 +50,9 @@ </Draggable> <a :href="appStoreUrl" class="button">{{ t('dashboard', 'Get more widgets from the app store') }}</a> + + <h3>{{ t('dashboard', 'Credits') }}</h3> + <p>{{ t('dashboard', 'Photos') }}: <a href="https://www.flickr.com/photos/paszczak000/8715851521/" target="_blank" rel="noopener">Clouds (Kamil Porembiński)</a>, <a href="https://www.flickr.com/photos/148302424@N05/36591009215/" target="_blank" rel="noopener">Un beau soir dété (Tanguy Domenge)</a>.</p> </div> </Modal> </div> @@ -407,6 +410,14 @@ export default { background-position: left center; padding-left: 26px; } + + h3 { + font-weight: bold; + + &:not(:first-of-type) { + margin-top: 32px; + } + } } .flip-list-move { |