Skip to content

Commit 1b24435

Browse files
authored
Merge branch 'master' into add-comprehensive-alias-verification
2 parents 3b54b9c + 8e33819 commit 1b24435

File tree

6 files changed

+20
-18
lines changed

6 files changed

+20
-18
lines changed

layouts/partials/docs-top-nav.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
</a>
5151
</li>
5252
<li class="ai">
53-
<a data-track="header-ai" href="/ai">
54-
<div class="icon icon-16-16 robot-outline"></div>
55-
Pulumi AI
53+
<a data-track="header-ai" href="/neo">
54+
<img src="/icons/pdi-neo.svg" class="inline mr-0.5" style="width: 16px; height: 16px;" />
55+
Pulumi Neo
5656
</a>
5757
</li>
5858
<li class="contact">

layouts/partials/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@
494494
<a class="mb-2" href="https://slack.pulumi.com/">Slack</a>
495495
<a class="mb-2" href="/docs/">Docs</a>
496496
<a class="mb-2" href="/registry/">Registry</a>
497-
<a class="mb-2" href="/ai">Pulumi AI</a>
497+
<a class="mb-2" href="/neo">Pulumi Neo</a>
498498
<a class="mb-2" href="/contact">Contact Us</a>
499499
<a class="mb-2" href="https://app.pulumi.com/">
500500
{{ partial "top-nav-user-toggle" }}

layouts/partials/top-nav.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
</a>
5959
</li>
6060
<li class="mr-8">
61-
<a data-track="header-ai" href="/ai">
62-
<i class="fas fa-robot mr-0.5"></i>
63-
Pulumi AI
61+
<a data-track="header-ai" href="/neo">
62+
<img src="/icons/pdi-neo.svg" class="inline mr-0.5" style="width: 16px; height: 16px;" />
63+
Pulumi Neo
6464
</a>
6565
</li>
6666
<li>

static/latest-dev-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.204.0-alpha.x2c9c08e
1+
3.204.0-alpha.xf6b4a84

theme/src/scss/_header.scss

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,19 +97,21 @@
9797
@apply hidden;
9898

9999
@screen lg {
100-
@apply flex items-center justify-center rounded-lg;
100+
@apply flex items-center justify-center;
101101
margin-left: 30px;
102102
width: 136px;
103103
height: 33px;
104104
padding: 8px 16px;
105105

106-
border: 1px solid theme("colors.violet.600");
107-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 1px 5px rgba(0, 0, 0, 0.12);
106+
border: 1px solid #805ac3;
107+
border-radius: 20px;
108+
background: linear-gradient(90deg,#be5188,#805ac3) border-box;
109+
color: #fff;
108110

109111
&:hover,
110112
&:active {
111-
background: linear-gradient(90deg, #be5188 0%, #805ac3 100%) border-box;
112-
border-color: transparent;
113+
color: #131314;
114+
background: transparent;
113115
}
114116
}
115117
}

theme/src/scss/docs/_docs-top-nav.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,19 @@ nav.actually-docs {
5151

5252
div.get-started {
5353
a.get-started-header-button {
54-
@apply rounded-lg;
55-
5654
width: auto;
5755
height: auto;
5856
display: flex;
5957
box-shadow: none;
60-
color: #131314;
58+
color: #fff;
6159
padding: 8px 16px;
6260
border: 1px solid #805ac3;
61+
border-radius: 20px;
62+
background: linear-gradient(90deg,#be5188,#805ac3) border-box;
6363

6464
&:hover {
65-
color: #fff;
66-
background: linear-gradient(90deg,#be5188,#805ac3) border-box;
65+
color: #131314;
66+
background: transparent;
6767
}
6868
}
6969
}

0 commit comments

Comments
 (0)