Skip to content

Commit

Permalink
Merge pull request #732 from OpenZeppelin/fix-bug-in-ui
Browse files Browse the repository at this point in the history
🐛 Fix bug in level buttons ui
  • Loading branch information
xaler5 authored Apr 18, 2024
2 parents ccc03ec + 3f587ba commit 03b9a03
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 03b9a03

Please sign in to comment.