diff --git a/.github/ISSUE_TEMPLATE/rollout-issue.md b/.github/ISSUE_TEMPLATE/rollout-issue.md
index 3f8de9edc2..e64f67418d 100644
--- a/.github/ISSUE_TEMPLATE/rollout-issue.md
+++ b/.github/ISSUE_TEMPLATE/rollout-issue.md
@@ -39,7 +39,7 @@ This issue tracks the `arcade-services` repository rollout. On top of the [Rollo
- [ ] Keep track of any issues encountered during the rollout either directly in this issue, or in a dedicated issue linked to this issue
- [ ] When finished, update the rollout stats in the [Stats](#stats) section below. The statistics will be available in Kusto a few minutes after the build was finished
- [ ] Merge the `production => main` PR in `arcade-services` (⚠️ **DO NOT SQUASH**)
-- [ ] Move rolled-out issues in the `Rollout` column of the [Product Construction](https://github.com/orgs/dotnet/projects/276) board into `Done`. Add a link in to this rollout issue in the comments before closing them ([example](https://github.com/dotnet/arcade-services/issues/2681#issuecomment-1632288755))
+- [ ] Move rolled-out issues/PRs in the `Rollout` column of the [Product Construction](https://github.com/orgs/dotnet/projects/276) board into `Done`. Verify that PRs have a reference to the release at the bottom ([example](https://github.com/dotnet/arcade-services/pull/3663)). If needed, manually add a comment with the reference ([example](https://github.com/dotnet/arcade-services/pull/3680#issuecomment-2191186247))
- [ ] Close this issue with closing comment describing a high-level summary of issues encountered during the rollout
- In case of rollback, uncomment the *Rollback* section below and follow the steps there
diff --git a/src/Maestro/maestro-angular/src/app/app.component.html b/src/Maestro/maestro-angular/src/app/app.component.html
index 93f42a6af6..3e2bc1f1a5 100644
--- a/src/Maestro/maestro-angular/src/app/app.component.html
+++ b/src/Maestro/maestro-angular/src/app/app.component.html
@@ -20,14 +20,9 @@
-
-
-
+
{{userName}}
diff --git a/src/Maestro/maestro-angular/src/themes/_base.scss b/src/Maestro/maestro-angular/src/themes/_base.scss
index 8bbc2c3c9f..ade16f8ca9 100644
--- a/src/Maestro/maestro-angular/src/themes/_base.scss
+++ b/src/Maestro/maestro-angular/src/themes/_base.scss
@@ -49,20 +49,6 @@ html, body {height: 100%;}
border-bottom: solid 1px $gray-300;
}
-.btn-info {
- color: darken(#512bd4, 10%);
- background-color: #f0f0f0;
- border-color: darken(#512bd4, 10%);
-}
-
-.btn-info:hover {
- color: #512bd4;
- background-color: #fbfbfb;
- border-color: #512bd4;
- border-width: 2px;
- padding: 5px 11px;
-}
-
// mc-switch styles
$width: 3em;
diff --git a/src/Maestro/maestro-angular/src/themes/dark/styles.scss b/src/Maestro/maestro-angular/src/themes/dark/styles.scss
index 5be5a82606..42197ac618 100644
--- a/src/Maestro/maestro-angular/src/themes/dark/styles.scss
+++ b/src/Maestro/maestro-angular/src/themes/dark/styles.scss
@@ -3,3 +3,17 @@
@import "../base-variables";
@import "./post-variables";
@import "../base";
+
+.btn-info {
+ color: darken(#512bd4, 10%);
+ background-color: #f0f0f0;
+ border-color: darken(#512bd4, 10%);
+}
+
+.btn-info:hover, .btn-info:focus {
+ color: #512bd4;
+ background-color: #fbfbfb;
+ border-color: #512bd4;
+ border-width: 2px;
+ margin: -1px;
+}
diff --git a/src/Maestro/maestro-angular/src/themes/light/styles.scss b/src/Maestro/maestro-angular/src/themes/light/styles.scss
index 3058927c54..a6abbdd576 100644
--- a/src/Maestro/maestro-angular/src/themes/light/styles.scss
+++ b/src/Maestro/maestro-angular/src/themes/light/styles.scss
@@ -2,4 +2,18 @@
// No customizations on normal bootstrap
@import "./variables";
@import "../base-variables";
-@import "../base";
\ No newline at end of file
+@import "../base";
+
+.btn-info {
+ color: darken(#512bd4, 10%);
+ background-color: #f0f0f0;
+ border-color: darken(#512bd4, 10%);
+}
+
+.btn-info:hover, .btn-info:focus {
+ color: #512bd4;
+ background-color: #fbfbfb;
+ border-color: #512bd4;
+ border-width: 2px;
+ margin: -1px;
+}