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

Makes fixed stuff on top always have higher z-index #16

Merged
merged 2 commits into from
Oct 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions app/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Installation

From the root of the repo, run `cd app && npm install`.
Once installation is finished, you can run the following commands to run your project locally. Note: if you don't have yarn installed globally, you can run `npm i -g yarn` to do a global install or add `npx` at the start of your commands, e.g. `npx yarn start`

## Available Scripts

In the project directory, you can run:
Expand Down
2 changes: 1 addition & 1 deletion app/src/Slider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import './Slider.scss';
// Use special non-intrusive zIndex for the Slider tooltip
const useStyles = makeStyles((theme) => ({
popper: {
zIndex: 1,
zIndex: 1200
},
tooltip: {
fontSize: '1rem',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Widget/List.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const useStyles = (theme) => ({
fixed: {
position: 'sticky',
top: 0,
zIndex: 1,
zIndex: 1200,
padding: 0,
// Not using it, adds a scrolling slider to the container on some screens
paddingBottom: 1,
Expand Down