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

CustomTabs not working on mobile devices. #212

Closed
einazare opened this issue Feb 11, 2020 · 0 comments
Closed

CustomTabs not working on mobile devices. #212

einazare opened this issue Feb 11, 2020 · 0 comments
Labels
bug Something isn't working

Comments

@einazare
Copy link
Contributor

Issue fix:

  1. Go inside src/components/CustomTabs/CustomTabs.js.
  2. Replace the following code:
        <Tabs
          value={value}
          onChange={handleChange}
          classes={{
            root: classes.tabsRoot,
            indicator: classes.displayNone
          }}
        >

With

        <Tabs
          value={value}
          onChange={handleChange}
          classes={{
            root: classes.tabsRoot,
            indicator: classes.displayNone
          }}
          variant="scrollable"
          scrollButtons="auto"
        >

We'll add the above fix in our next update.

@einazare einazare added the bug Something isn't working label Feb 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant