You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On all apps, but especially in the Menu and table components, scrollbars are very visible when overflow is set to scroll. Task is to hide these scrollbars globally - we should do this at the Elements Global level so the changes are seen everywhere
Specification or Acceptance Criteria:
I should not see scrollbars anywhere.
Elements should be released to next minor version
Suggested solution:
// for webkit
::-webkit-scrollbar {
display: none;
}
// for IE, FF
* {
scrollbar-width: none;
}
The text was updated successfully, but these errors were encountered:
Background context or User story:
On all apps, but especially in the Menu and table components, scrollbars are very visible when overflow is set to scroll. Task is to hide these scrollbars globally - we should do this at the Elements Global level so the changes are seen everywhere
Specification or Acceptance Criteria:
Suggested solution:
The text was updated successfully, but these errors were encountered: