mirror of https://github.com/tildeclub/site.git
fix userlist columns last row not honoring size
This commit is contained in:
parent
cc381753a8
commit
c3d8a83eed
|
@ -141,18 +141,17 @@ code > span.fl {
|
||||||
|
|
||||||
/* Page content */
|
/* Page content */
|
||||||
.user-list {
|
.user-list {
|
||||||
display: flex;
|
display: grid;
|
||||||
flex-flow: row wrap;
|
grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
|
||||||
justify-content: space-evenly;
|
|
||||||
list-style-type: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-list a {
|
.user-list a {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
flex: 10em;
|
flex: 10em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-list b {
|
.user-list b {
|
||||||
background-color: #fb5;
|
background-color: #fb5;
|
||||||
color:#000;
|
color:#000;
|
||||||
|
|
Loading…
Reference in New Issue