1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00

ajout des peuples humains d'Alarian

This commit is contained in:
Maxime Moraine 2021-03-17 16:22:22 +01:00
parent 94710e3e64
commit 4acabeeaf5
6 changed files with 93 additions and 7 deletions

View file

@ -7,7 +7,7 @@
<span class="icon-bookmark breadcrumb-logo"></span>
</template>
<template v-else>
{{ item.text }}
<template v-if="item.community"><v-icon>mdi-account-group</v-icon>&nbsp;</template>{{ item.text }}
</template>
</v-breadcrumbs-item>
</template>
@ -60,7 +60,7 @@
} else if (page.path == '/calculateur-de-rencontres/') {
crumbs.push({to: page.path, disabled: disabled, text: 'Calculateur de rencontres'})
} else {
crumbs.push({to: page.path, disabled: disabled, text: page.frontmatter.breadcrumb || page.title})
crumbs.push({to: page.path, disabled: disabled, text: page.frontmatter.breadcrumb || page.title, community: page.frontmatter.community})
}
}
}

View file

@ -42,7 +42,7 @@
</v-list-item-content>
</template>
<v-list-item v-for="subchild in child.children" link :to="{path: subchild.path}" >
<v-list-item-icon v-if="subchild.icon">
<v-list-item-icon class="mr-2" v-if="subchild.icon">
<v-icon v-text="subchild.icon"></v-icon>
</v-list-item-icon>
<v-list-item-content>

View file

@ -29,6 +29,13 @@
}
}
.community {
@extend .block-highlight;
border-color: $color-gold;
border-left: 2px solid $color-gold;
border-right: 2px solid $color-gold;
}
.theme--dark {
.dragon {
background-color: darken($color-dragon, 20);