Skip to content

Commit

Permalink
Fix scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
sonsoleslp committed Dec 11, 2020
1 parent 39cc4cc commit c23be42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/js/play.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ const updateContent = (content) => {
if ($(`#content-${block.index}`).length){ // It was already there
$('#editor').append($(`#content-${block.index}`));
} else {
first = block.index;
first = first === null ? block.index : first;
insertContent(block.type, block.payload, block.puzzles, block.index);
}
newIndexes.push(block.index);
Expand Down
2 changes: 1 addition & 1 deletion public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3498,7 +3498,7 @@ table.mainTable {
#mainSection .main.teams .flex-table-wrapper .flex-table .operations-team .overlay-trigger.overlay-menu {
left: 30px;
top: 35px;
width: 144px; }
width: 160px; }
#mainSection .main.teams .flex-table-wrapper .flex-table .operations-team .actions-team {
background: transparent;
border: none;
Expand Down
2 changes: 1 addition & 1 deletion public/stylesheets/teams.sass
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
&.overlay-menu
left: 30px
top: 35px
width: 144px
width: 160px
.actions-team
background: transparent
border: none
Expand Down

0 comments on commit c23be42

Please sign in to comment.