Skip to content

Commit

Permalink
More padding
Browse files Browse the repository at this point in the history
  • Loading branch information
nanaya committed Jan 28, 2025
1 parent ac3404b commit 2c477bd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions resources/css/bem/team-members-leaderboard-item.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.

.team-members-leaderboard-item {
--gutter: 10px;
align-items: center;
background: hsl(var(--hsl-b3));
border-radius: @border-radius--large;
Expand All @@ -10,12 +11,16 @@
gap: 10px;
grid-column: 1 / -1;
grid-template-columns: subgrid;
padding: 4px 10px;
padding: 4px var(--gutter);

&:hover {
background: hsl(var(--hsl-b2));
}

@media @desktop {
--gutter: 20px;
}

&__avatar {
.default-border-radius();
align-items: center;
Expand All @@ -26,7 +31,7 @@

&__number {
font-size: @font-size--title-small-3;
padding: 0 10px;
padding: 0 var(--gutter);
}

&__number-title {
Expand Down

0 comments on commit 2c477bd

Please sign in to comment.