fix: changing color of beta tag for Service Map & light theme changer (#5731)

* fix: changing color of tag for Service Map in sidepanel

* fix: added geekblue and borderless in beta tag to light theme changer

* fix: removed comments
This commit is contained in:
Pranay Prateek 2024-08-28 18:36:40 +05:30 committed by GitHub
parent 3200fd054e
commit 532f274bd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -26,7 +26,9 @@ function MySettings(): JSX.Element {
label: (
<div className="theme-option">
<Sun size={12} data-testid="light-theme-icon" /> Light{' '}
<Tag color="magenta">Beta</Tag>
<Tag bordered={false} color="geekblue">
Beta
</Tag>
</div>
),
value: 'light',

View File

@ -31,7 +31,9 @@ export default function NavItem({
{isBeta && (
<div className="nav-item-beta">
<Tag color="magenta">Beta</Tag>
<Tag bordered={false} color="geekblue">
Beta
</Tag>
</div>
)}
</div>