-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathHeaderSection.vue
51 lines (49 loc) · 1.28 KB
/
HeaderSection.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<template>
<b-navbar wrapper-class="container">
<template slot="brand">
<b-navbar-item>
<a
class="logo"
href="/"
>
<img
src="../assets/chooser.svg"
alt="Creative Commons License chooser"
>
</a>
</b-navbar-item>
</template>
<template slot="end">
<b-navbar-item
href="https://docs.google.com/forms/d/e/1FAIpQLSfF7MCKxlPsPuMn17v_sLYWMkxBkudQSPXCXoJKjh5GCtx63g/viewform"
title="Feedback"
class="navbar-item-feedback"
>
{{ $t('header.nav-feedback') }}
<i class="icon external-link" />
</b-navbar-item>
</template>
</b-navbar>
</template>
<script>
export default {
name: 'HeaderSection'
}
</script>
<style lang="scss">
nav.navbar {
padding: 0.5rem 0 0;
}
.navbar-item-feedback {
padding-right: 30%;
font-family: Roboto Condensed,sans-serif;
font-size: 16px;
font-weight: bold;
color: #787878!important;
transition: color 300ms ease;
&:hover {
color: #fb7729!important;
background-color: white;
}
}
</style>