Error in "display flex" challenge

THE CHALLENGE IS TO ADD DISPLAY FLEX IN DIFERENT PLACES BUT I ALREADY DO THAT AND WHEN I TRY TO MOVE ON TO THE NEXT CHALLENGE A MESSEGE APPEARS LIKE “PUT DISPLAY FLEX IN THE .FOLLOW-BTN”. HOW CAN I FIX THIS ERROR ?


<style>
body {
  font-family: Arial, sans-serif;
}
header {
display: flex;
}
header .profile-thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}
header .profile-name {
display: flex;
  margin-left: 10px;
}
header .follow-btn {
  display: flex;
  margin: 0 0 0 auto;
}
header .follow-btn button {
  border: 0;
  border-radius: 3px;
  padding: 5px;
}
header h3, header h4 {
display: flex;
  margin: 0;
}
#inner p {
  margin-bottom: 10px;
  font-size: 20px;
}
#inner hr {
  margin: 20px 0;
  border-style: solid;
  opacity: 0.1;
}
footer {
display: flex;
}
footer .stats {
display: flex;
  font-size: 15px;
}
footer .stats strong {
  font-size: 18px;
}
footer .stats .likes {
  margin-left: 10px;
}
footer .cta {
  margin-left: auto;
}
footer .cta button {
  border: 0;
  background: transparent;
}


**Challenge:** Add Flex Superpowers to the Tweet Embed

**Link to the challenge:**
https://www.freecodecamp.org/learn/responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed

if you have an ad block, the follow button is usually hidden by it and so not detected by tests, making it impossible to pass the tests

1 Like

Hi!

Why have you deleted half of the code below the last } in your code?
I think that is the reason why your code does not work!