Commit c3785e1ae55466c562f1155abbd3af77f0771b18
1 parent
28e35545
fix: DEFECT-841 configuration list image not in the middle
Showing
1 changed file
with
3 additions
and
5 deletions
| ... | ... | @@ -205,11 +205,9 @@ |
| 205 | 205 | <List.Item> |
| 206 | 206 | <Card hoverable> |
| 207 | 207 | <template #cover> |
| 208 | - <img | |
| 209 | - class="w-36 h-36 flex justify-center items-center" | |
| 210 | - alt="example" | |
| 211 | - :src="item.thumbnail || configurationSrc" | |
| 212 | - /> | |
| 208 | + <div class="h-full w-full !flex justify-center items-center text-center"> | |
| 209 | + <img class="w-36 h-36" alt="example" :src="item.thumbnail || configurationSrc" /> | |
| 210 | + </div> | |
| 213 | 211 | </template> |
| 214 | 212 | <template class="ant-card-actions" #actions> |
| 215 | 213 | <Authority value="api:yt:configuration:center:get_configuration_info:get"> | ... | ... |