Skip to content

Commit

Permalink
Update RCSS rules to avoid reformatting table each layout step
Browse files Browse the repository at this point in the history
  • Loading branch information
mikke89 committed Aug 16, 2024
1 parent 8990990 commit ef2117b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Samples/basic/player_list/data/player_list.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ input[type="text"] {
flex-direction: column;
}

#contents > * {
flex: 1;
width: 100%;
}

#contents__footer {
align-self: flex-end;
}
Expand All @@ -98,8 +103,8 @@ input[type="text"] {

#players {
margin-top: 15dp;
flex: auto;
overflow: auto;
flex: 10;
overflow: scroll;
}

table {
Expand Down

0 comments on commit ef2117b

Please sign in to comment.