Skip to content

Commit

Permalink
🐛 Fix bug in level buttons ui
Browse files Browse the repository at this point in the history
  • Loading branch information
GianfrancoBazzani committed Apr 17, 2024
1 parent ccc03ec commit 3f587ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/containers/Level.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,9 @@ class Level extends React.Component {
)}
</section>
{/* BUTTONS */}
<section className="descriptors button-sequence">
<section className="descriptors">
{level.levelContract && (
<div>
<div className=" button-sequence">
{/* NEXT LEVEL */}
{levelCompleted && nextLevelId && (
<button
Expand Down
3 changes: 3 additions & 0 deletions client/src/styles/level.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
.button-sequence {
margin-bottom: 2%;
text-align: center;
display: flex;
flex-direction: row;
gap: 1rem;
}

.level-title {
Expand Down

0 comments on commit 3f587ba

Please sign in to comment.