|
21 | 21 | <transition name="fade">
|
22 | 22 | <div
|
23 | 23 | v-if="isOpen"
|
24 |
| - class="menu bg-black pt-xlarge pb-large pr-small" style="padding-left: 4.25rem"> |
| 24 | + class="menu bg-black pt-large pb-large"> |
25 | 25 | <transition :name="docsOpen ? 'fade-left' : 'fade-right'" mode="out-in">
|
26 |
| - <div v-if="!docsOpen" key="1" class="mt-small"> |
| 26 | + <div v-if="!docsOpen" key="1" class="p-medium"> |
27 | 27 | <div
|
28 | 28 | v-for="item in $tm('navbar.items')"
|
29 | 29 | :key="item.name">
|
30 | 30 | <button
|
31 | 31 | :name="`go-to-${item.name}`"
|
32 |
| - class="mb-xsmall mt-xsmall color-white font-title type-uppercase" |
| 32 | + style="padding-left: 2.75rem" |
| 33 | + class="mb-xsmall mt-xsmall color-white type-small font-title type-uppercase" |
33 | 34 | @click="scrollTo(item.id, 400); isOpen = false">
|
34 | 35 | {{ item.name }}
|
35 | 36 | </button>
|
36 | 37 | </div>
|
37 |
| - <div> |
38 |
| - <button |
39 |
| - class="flex middle mt-large mb-small color-theme font-title type-uppercase type-large" |
40 |
| - style="margin-left: -0.5rem" |
41 |
| - @click="docsOpen = true"> |
42 |
| - <chevron-icon direction="right" color="theme" size="1.5rem" /> |
43 |
| - <div> |
44 |
| - DOCS |
45 |
| - </div> |
46 |
| - </button> |
47 |
| - </div> |
| 38 | + <hr class="my-medium pr-xlarge" /> |
| 39 | + <a href="https://cert.robotframework.org" style="padding-left: 2.75rem" class="block my-xsmall color-white font-title type-uppercase type-no-underline">Certificate</a> |
| 40 | + <a href="https://robotframework.org/foundation" style="padding-left: 2.75rem" class="block mt-small color-white font-title type-uppercase type-no-underline">Foundation</a> |
| 41 | + <button |
| 42 | + class="flex middle mt-large mb-small color-theme font-title type-uppercase type-large" |
| 43 | + style="padding-left: 2.25rem" |
| 44 | + @click="docsOpen = true"> |
| 45 | + <chevron-icon direction="right" color="theme" size="1.5rem" /> |
| 46 | + <div> |
| 47 | + DOCS |
| 48 | + </div> |
| 49 | + </button> |
48 | 50 | </div>
|
49 |
| - <div v-else key="3" class="mt-medium"> |
| 51 | + <div v-else key="3" class="mt-large pl-xlarge"> |
50 | 52 | <button class="type-uppercase font-title color-theme type-large flex middle mb-medium" style="margin-left: -0.5rem" @click="docsOpen = false">
|
51 | 53 | <chevron-icon direction="left" color="theme" size="1.5rem" />
|
52 | 54 | DOCS
|
|
0 commit comments