chingu-voyages / v48-tier1-team-05

A dinosaur app for viewing detailed information about your favorite dinosaurs | Chingu Voyage-48 | https://chingu.io/
https://chingu-voyages.github.io/v48-tier1-team-05/
4 stars 0 forks source link

fix .hidden problem #158

Closed terrifricker closed 5 months ago

terrifricker commented 5 months ago

Moving the code

.hidden {
  display: none;
}

up in styles.css file (line 25), meant that the display property was being overridden in line 150 with

.dinosaur-profiles {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

Moving the .hidden code to the bottom of the file will resolve this problem.

Screen Shot 2024-04-11 at 7 29 07 PM