diff --git a/components/topbar/src/application-drawer.styles.ts b/components/topbar/src/application-drawer.styles.ts index 68747e9c..038152c4 100644 --- a/components/topbar/src/application-drawer.styles.ts +++ b/components/topbar/src/application-drawer.styles.ts @@ -105,6 +105,10 @@ export const useApplicationDrawrStyles = makeStyles({ justifyContent: "flex-start", paddingLeft: tokens.spacingHorizontalSNudge, }, + contentButtonChecked: { + color: tokens.colorNeutralForeground2Selected, + backgroundColor: tokens.colorSubtleBackgroundSelected, + }, linkWrapper: { display: "flex", justifyContent: "flex-end", diff --git a/components/topbar/src/application-drawer.tsx b/components/topbar/src/application-drawer.tsx index 783cfc3c..622dae2e 100644 --- a/components/topbar/src/application-drawer.tsx +++ b/components/topbar/src/application-drawer.tsx @@ -13,7 +13,6 @@ import { DrawerHeader, Link, mergeClasses, - ToggleButton, tokens, } from "@fluentui/react-components"; import { useApplicationDrawrStyles as useApplicationDrawerStyles } from "./application-drawer.styles"; @@ -154,10 +153,12 @@ const SingleApplication = ({ const styles = useApplicationDrawerStyles(); return ( - {application.label} - + ); };