Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/components/navigation/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
id="backButton"
:name="t('simplesettings', 'Back to Files')"
href="/index.php/apps/files">
<IconChevronLeft slot="icon" :size="24" />
<IconChevronLeft slot="icon" :size="16" />
</NcAppNavigationItem>
<NcAppNavigationItem
:name="t('simplesettings', 'Account Settings')"
@click="scrollToElement('account')">
<IconAccount slot="icon" :size="20" />
<IconAccount slot="icon" :size="16" />
</NcAppNavigationItem>
<NcAppNavigationItem
:name="t('simplesettings', 'Security & Privacy')"
@click="scrollToElement('security')">
<IconLock slot="icon" :size="20" />
<IconLock slot="icon" :size="16" />
</NcAppNavigationItem>
<NcAppNavigationItem
:name="t('simplesettings', 'Help & Support')"
@click="scrollToElement('help')">
<IconHeadset slot="icon" :size="20" />
<IconHeadset slot="icon" :size="16" />
</NcAppNavigationItem>
</ul>
</div>
Expand All @@ -30,10 +30,10 @@
import { translate as t } from '@nextcloud/l10n'
import { defineComponent } from 'vue'

import IconAccount from 'vue-material-design-icons/Account.vue'

Check failure on line 33 in src/components/navigation/Navigation.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Unable to resolve path to module 'vue-material-design-icons/Account.vue'
import IconLock from 'vue-material-design-icons/Lock.vue'

Check failure on line 34 in src/components/navigation/Navigation.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Unable to resolve path to module 'vue-material-design-icons/Lock.vue'
import IconHeadset from 'vue-material-design-icons/Headset.vue'

Check failure on line 35 in src/components/navigation/Navigation.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Unable to resolve path to module 'vue-material-design-icons/Headset.vue'
import IconChevronLeft from 'vue-material-design-icons/ChevronLeft.vue'

Check failure on line 36 in src/components/navigation/Navigation.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Unable to resolve path to module 'vue-material-design-icons/ChevronLeft.vue'

// @ts-expect-error: Cannot find module or its corresponding type declarations.
import NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'
Expand Down Expand Up @@ -62,6 +62,8 @@
margin-top: 24px;

ul {
font-weight: 600;

#backButton {
margin-top: -8px;
margin-left: -14px;
Expand Down
Loading