boolean-uk / team-dev-frontend-client

1 stars 11 forks source link

Bug: Add Cohort Popup is being overlayed #206

Closed lucianosimoni closed 1 year ago

lucianosimoni commented 1 year ago

How to replicate:

Go to the page Cohorts > click on Add Cohort

Why it is happening

Probably because StudentsList component is using a z-index higher than the CohortAddPopUp.

How to fix

Set the z-index of CohortAddPopUp to be high, like 1000 So in the css file Style.css, on the .cohort-form, add the following code:

z-index: 100;

Problem prints

Image

Auenc commented 1 year ago

Great write up!