mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 19:59:18 +02:00
Import WebCompat GoFaster 6.1.0 sources Differential Revision: https://phabricator.services.mozilla.com/D46814 --HG-- extra : moz-landing-system : lando
11 lines
419 B
CSS
11 lines
419 B
CSS
/**
|
|
* teamcoco.com - a scrollbar at the top covering navigation menu
|
|
* Bug #1570119 - https://bugzilla.mozilla.org/show_bug.cgi?id=1570119
|
|
*
|
|
* The scrollbar is covering navigation items making them unusable.
|
|
* There are ::-webkit-scrollbar css rules already applied to the scrollbar,
|
|
* hiding it in Chrome. Adding the scrollbar-width: none fixes the issue in Firefox.
|
|
*/
|
|
.css-bdnz85 {
|
|
scrollbar-width: none;
|
|
}
|