mirror of
https://github.com/sascha-hemi/pycom-documentation.git
synced 2026-03-21 05:06:35 +01:00
- removed shadow below toolbar - removed shadow around main content div - made background around main content div white
44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
<v-toolbar
|
|
app
|
|
fixed
|
|
height=68
|
|
class="pr-3 pl-2 navbar"
|
|
dark
|
|
style="background-color: #171730;"
|
|
flat
|
|
>
|
|
<v-toolbar-title style="width: 260px; " class="ml-4 pl-0 pt-2 text-xs-center hidden-sm-and-down">
|
|
<v-img class="ml-4" height=48 width=190 src="/logo.svg" class="">
|
|
</v-toolbar-title>
|
|
|
|
<v-btn icon @click.stop="drawer = !drawer" style="z-index: 1200;">
|
|
<v-icon>toc</v-icon>
|
|
</v-btn>
|
|
<span class="beba" style="font-size: 1.6rem; opacity: 0.85;">
|
|
{{ .Page.Title }}
|
|
</span>
|
|
|
|
<v-text-field
|
|
style="max-width: 650px"
|
|
class="ml-3 algolia-search-field"
|
|
light
|
|
hide-details
|
|
label="Search the docs..."
|
|
solo
|
|
append-icon="search"
|
|
></v-text-field>
|
|
|
|
<v-spacer></v-spacer>
|
|
{{ if eq .Section "firmwareapi"}}
|
|
<div style="width: 240px;">
|
|
<v-select :items="branches" v-model="branch" width=120 class="mono">
|
|
</v-select>
|
|
</div>
|
|
{{ end }}
|
|
{{- if gt .WordCount 400 -}}
|
|
<v-btn icon ref="tocBtn" @click.stop="drawer2 = !drawer2" >
|
|
<v-icon style="color: rgb(23, 255, 189);">more_vert</v-icon>
|
|
</v-btn>
|
|
{{ end }}
|
|
</v-toolbar>
|