blob: 7a6c2c07c2654a396fa71e0877429524b5618459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* 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;
}
|