Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide scrollbars at an elements level #2026

Closed
willmcvay opened this issue Jul 9, 2020 · 0 comments · Fixed by #2060
Closed

Hide scrollbars at an elements level #2026

willmcvay opened this issue Jul 9, 2020 · 0 comments · Fixed by #2060
Assignees
Labels
elements Relates to Elements components and utilities feature New feature or request front-end Relates to front end issues

Comments

@willmcvay
Copy link
Contributor

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:

  • 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;
}
@willmcvay willmcvay added feature New feature or request elements Relates to Elements components and utilities front-end Relates to front end issues labels Jul 9, 2020
@willmcvay willmcvay added this to the NPM Packages Stable Release milestone Jul 9, 2020
@duong-se duong-se self-assigned this Jul 14, 2020
duong-se added a commit that referenced this issue Jul 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
elements Relates to Elements components and utilities feature New feature or request front-end Relates to front end issues
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants