mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 18:14:15 +01:00
37 lines
645 B
CSS
37 lines
645 B
CSS
|
.list-header {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
flex-wrap: wrap;
|
||
|
gap: .5rem;
|
||
|
}
|
||
|
|
||
|
.list-header-sort {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: flex-end;
|
||
|
padding-left: 1rem;
|
||
|
padding-right: 1rem;
|
||
|
}
|
||
|
|
||
|
.list-header-search {
|
||
|
display: flex;
|
||
|
flex: 1;
|
||
|
align-items: center;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: center;
|
||
|
min-width: 200px; /* to enable flexbox wrapping on mobile */
|
||
|
}
|
||
|
|
||
|
.list-header-search .input {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.small-pill-buttons {
|
||
|
min-height: 35.4px !important; /* match .small.button in height */
|
||
|
}
|
||
|
|
||
|
.small-pill-buttons .item {
|
||
|
padding-top: 6px !important;
|
||
|
padding-bottom: 6px !important;
|
||
|
}
|