Skip to content

Commit

Permalink
Modify Faction Member Number to prevent overflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashank999 committed Sep 1, 2024
1 parent 8524151 commit 2da6db5
Showing 1 changed file with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
.tt-member-index {
width: 22px;
margin: auto 0 auto 2px;
width: 4%;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
padding: 0 7px;
height: 100%;
border-right: 1px solid var(--default-panel-divider-outer-side-color);
}
Expand All @@ -21,15 +20,23 @@
}

body:not(.tt-mobile) .members-list.tt-modified .table-header .member {
width: calc(34% + 62px) !important;
width: 38%;
}

body:not(.tt-mobile) .members-list.tt-modified .table-row .member.icons {
min-width: 34%;
body:not(.tt-mobile) .members-list.tt-modified .table-header .member-icons {
width: 28%;
}

body:not(.tt-mobile) .members-list.tt-modified .table-row .member {
width: 34%;
}

body:not(.tt-mobile) .members-list.tt-modified .table-row .member-icons {
width: 28%;
}

body:not(.tt-mobile) .members-list.tt-modified .status {
min-width: 60px;
width: 8%;
}

body.tt-mobile .table-row {
Expand Down

0 comments on commit 2da6db5

Please sign in to comment.