Template
1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo synced 2024-11-22 09:54:24 +01:00

Merge pull request '[PORT] Fix overflow for images on project cards (gitea#31683)' (#5033) from gusted/forgejo-bp-5029-v7 into v7.0/forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5033
Reviewed-by: Otto <otto@codeberg.org>
This commit is contained in:
Otto 2024-08-20 21:35:23 +00:00
commit 3dbe5be281
2 changed files with 5 additions and 2 deletions

View file

@ -79,7 +79,8 @@
.card-attachment-images {
display: inline-block;
white-space: nowrap;
overflow: hidden;
overflow: scroll;
cursor: default;
text-align: center;
}
@ -87,7 +88,9 @@
display: inline-block;
max-height: 50px;
border-radius: var(--border-radius);
text-align: left;
margin-right: 2px;
aspect-ratio: 1;
}
.card-attachment-images img:only-child {

View file

@ -1,7 +1,7 @@
.issue-card {
display: flex;
flex-direction: column;
align-items: start;
align-items: stretch;
border-radius: var(--border-radius);
padding: 8px 10px;
border: 1px solid var(--color-secondary);