aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/components/RepositoryHeader.vue
blob: 50a1db93e15d72f0e0c816da8658bcb036bd005a (plain)
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
52
<template>
	<div id="header" class="mx-0 d-flex mt-3 ms-2">
		<BaseBackButton to="/" />
		<div class="d-inline ms-3">
			<span id="title" class="fs-1">{{ name }}</span>
			<p id="about" class="fs-4">
				{{ description }}
			</p>
		</div>
	</div>
</template>

<script>
import BaseBackButton from "@/components/BaseBackButton";

export default {
	name: "RepositoryHeader",
	props: {
		name: {
			type: String,
			required: true
		},
		description: {
			type: String,
			required: true
		}
	},
	components: {
		BaseBackButton
	}
};
</script>

<style lang="scss" scoped>
@use "../scss/colors";

@import "../scss/bootstrap";
@import "../scss/fonts";

#title {
	font-family: $font-title;
	font-weight: 300;
	line-height: 0.6;
}

#about {
	font-weight: 300;
	padding-left: 1px;
	margin: 0px;
	margin-top: 10px;
}
</style>