MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
.leaderboard { | .leaderboard { | ||
width: 100%; | |||
} | } | ||
.row { | .row { | ||
display: | display: flex; | ||
flex-wrap: wrap; | |||
} | |||
.donor { | |||
margin-right: 10px; /* Adjust as needed */ | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
} | |||
.donor img { | |||
margin-bottom: 5px; | |||
} | |||
.donor-name { | |||
font-size: 12px; | |||
text-align: center; | |||
max-width: 50px; /* Adjust as needed */ | |||
overflow: hidden; | |||
white-space: nowrap; | |||
text-overflow: ellipsis; | |||
} | } | ||
Revision as of 16:16, 14 April 2024
.leaderboard {
width: 100%;
}
.row {
display: flex;
flex-wrap: wrap;
}
.donor {
margin-right: 10px; /* Adjust as needed */
display: flex;
flex-direction: column;
align-items: center;
}
.donor img {
margin-bottom: 5px;
}
.donor-name {
font-size: 12px;
text-align: center;
max-width: 50px; /* Adjust as needed */
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}