I'm currently creating a list of organizations on the left side of this page:
To create this list, I am using <span>
tags that are linked to the corresponding map.
However, I'm facing an issue - the scroll bar doesn't show up in Chrome but it does in Firefox and Safari.
Any suggestions?
UPDATE:
It appears that this problem is specific to Mac OS.
SOLUTION:
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0,0,0,.5);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}