mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
41 lines
1.1 KiB
Vue
41 lines
1.1 KiB
Vue
<template>
|
|
<div class="nav-community container">
|
|
<b-row class="nav-row">
|
|
<b-col cols="12" lg="4" md="4" class="px-0">
|
|
<b-btn to="contribute" active-class="btn-active" block variant="link">
|
|
<b-icon icon="pencil" class="mr-2" />
|
|
{{ $t('community.submitContribution') }}
|
|
</b-btn>
|
|
</b-col>
|
|
<b-col cols="12" lg="4" md="4" class="px-0">
|
|
<b-btn to="contributions" active-class="btn-active" block variant="link">
|
|
<b-icon icon="person" class="mr-2" />
|
|
{{ $t('community.myContributions') }}
|
|
</b-btn>
|
|
</b-col>
|
|
<b-col cols="12" lg="4" md="4" class="px-0">
|
|
<b-btn to="community" active-class="btn-active" block variant="link">
|
|
<b-icon icon="people" class="mr-2" />
|
|
{{ $t('community.community') }}
|
|
</b-btn>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'NavCommunity',
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.nav-row {
|
|
background-color: rgb(209, 209, 209);
|
|
border-radius: 26px;
|
|
}
|
|
|
|
.btn-active {
|
|
background-color: rgb(23 141 129);
|
|
color: white;
|
|
}
|
|
</style>
|