Skip to content

Commit

Permalink
Merge pull request #6479 from akatsoulas/fix-moderation-ui
Browse files Browse the repository at this point in the history
Fix username overlapping
  • Loading branch information
akatsoulas authored Jan 29, 2025
2 parents f0f3dd0 + b3d48b5 commit 128aae6
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions kitsune/sumo/static/sumo/scss/components/_flaggit.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,14 @@

.flagged-item-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
gap: p.$spacing-sm;

@media (min-width: p.$screen-md) {
flex-direction: row;
justify-content: space-between;
align-items: center;
}

h2 {
margin: 0;
Expand All @@ -37,6 +43,7 @@
span {
font-size: 1rem;
font-weight: bold;
white-space: nowrap;
}
}
}
Expand Down Expand Up @@ -98,4 +105,4 @@
form {
margin-bottom: p.$spacing-sm;
}
}
}

0 comments on commit 128aae6

Please sign in to comment.