Fixes the floating chatbox hiding the last line of response in microsoft copilot on mozilla firefox.
microsoft copilot footer fix by ychaouche
Details
Authorychaouche
LicenseNo License
Categorycopilot.microsoft
Created
Updated
Code size515 B
Code checksumb7d07cd1
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name microsoft copilot footer fix
@version 20250422.10.35
@namespace ychaouche
@description Fixes the footer of microsoft copilot on mozilla firefox by adding a padding-bottom. This allows you to see the last line its response as well as the actions toolbar (like, dislike, copy, share). Those two were previously hidden by the floating chatbox itself.
@author ychaouche
==/UserStyle== */
@-moz-document domain("copilot.microsoft.com") {
.px-6 {
padding-bottom:7em;
}
}