You can hide the logout option for your custom portal that appears in the Employee
Center tab within Microsoft Teams.
Antes de Iniciar
Role required: admin
Procedimento
-
Navigate to .
-
Click on your custom CSS.
-
Click here to edit the CSS.
-
To disable the logout button from Microsoft Teams desktop
application.
Customize the following code as required and paste in the CSS.
/* Embedded portal */
/*The code shared to disable the logout button is an example. You need to customize as required to disable logout button.*/
.embedded-experience .avatar-drop-down .header-menu-item:last-child {
display: none;
}
-
To disable the logout button from Microsoft Teams mobile
application.
Customize the following code as required and paste in the CSS.
/* Embedded portal */
/*The code shared to disable logout button is an example. You need to customize as required to disable logout button.*/
.embedded-experience .impersonate-and-logout {
div > ul > li:last-child {
display: none !important;
}
}
-
Click Update.
-
Refresh the custom portal tab in Microsoft Teams.