fix: (loading) image overflow
ci/woodpecker/push/woodpecker Pipeline was successful Details

feat/type-attributes
Tomáš Mládek 2023-08-24 08:28:30 +02:00
parent fc83218515
commit 3f9ce3991c
1 changed files with 6 additions and 0 deletions

View File

@ -164,6 +164,7 @@
display: flex;
min-height: 0;
flex-grow: 1;
justify-content: center;
}
}
@ -177,6 +178,7 @@
.image {
display: flex;
min-height: 0;
min-width: 0;
justify-content: center;
@ -187,7 +189,9 @@
&:not(.loaded) {
flex-grow: 1;
height: 6rem;
max-height: 100%;
width: 100%;
min-width: 0;
}
}
}
@ -215,6 +219,7 @@
flex-grow: 1;
min-height: 0;
width: 100%;
min-width: 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
@ -231,6 +236,7 @@
justify-content: end;
list-style: none;
min-height: 0;
min-width: 0;
}
}
</style>