Browse Source
Merge pull request #202 from dotnet/jkotalik/makeButtonsPop
Make buttons pop a bit more
pull/219/head
Amiee Lo
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
4 deletions
-
src/Microsoft.Tye.Hosting/Dashboard/Shared/MainLayout.razor
-
src/Microsoft.Tye.Hosting/wwwroot/css/site.css
|
|
|
@ -7,10 +7,10 @@ |
|
|
|
<div class="main"> |
|
|
|
<div class="top-row"> |
|
|
|
<div class="top-nav-item nav-item px-1"> |
|
|
|
<a href="https://aka.ms/AA7q20u" target="_blank">Tell us what you think!</a> |
|
|
|
<a href="https://aka.ms/AA7q20u" target="_blank" id="bg-info-link">Tell us what you think!</a> |
|
|
|
</div> |
|
|
|
<div class="top-nav-item nav-item px-1"> |
|
|
|
<a href="https://github.com/dotnet/tye" target="_blank">About</a> |
|
|
|
<a href="https://github.com/dotnet/tye" target="_blank" id="bg-info-link">About</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
@ -5,12 +5,15 @@ html, body { |
|
|
|
} |
|
|
|
|
|
|
|
a, .btn-link { |
|
|
|
color: #0366d6; |
|
|
|
color: #2eacf5; |
|
|
|
} |
|
|
|
|
|
|
|
#bg-info-link{ |
|
|
|
background-color: #1a90d4; |
|
|
|
} |
|
|
|
.btn-primary { |
|
|
|
color: #fff; |
|
|
|
background-color: #3371e3; |
|
|
|
background-color: #2eacf5; |
|
|
|
border-color: #303030; |
|
|
|
} |
|
|
|
|
|
|
|
|