Skip to content

Commit b3cbe7e

Browse files
authored
Merge pull request #23 from randombenj/feature/display-project-name
feat: add project name to docs page
2 parents 24815aa + cc8be7c commit b3cbe7e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

web/src/pages/Docs.vue

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<Layout class="docs-layout" :fullscreen="true">
33
<template v-slot:toolbar>
4+
<span class="project-name">{{ $route.params.project }}</span>
45
<md-field class="version-select">
56
<md-select
67
@md-selected="load()"
@@ -111,4 +112,11 @@ body,
111112
.md-app-content {
112113
padding: 0px;
113114
}
115+
116+
.project-name {
117+
margin-left: 16px;
118+
margin-top: 26px;
119+
font-size: 16px;
120+
display: inline-block;
121+
}
114122
</style>

0 commit comments

Comments
 (0)