1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-09 15:55:23 +02:00

fix(home): EE-4874 homepage ui issues (#8319)

This commit is contained in:
cmeng 2023-01-23 09:14:06 +13:00 committed by GitHub
parent 07dd6bbe84
commit d04747b309
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 26 additions and 6 deletions

View file

@ -1,10 +1,10 @@
.wizard-list-wrapper {
display: grid;
grid-template-columns: 50px 1fr;
grid-template-columns: 50px 1fr 70px;
grid-template-areas:
'image title'
'image subtitle'
'image type';
'image title title'
'image subtitle edgeStatus'
'image type type';
border: 1px solid rgb(221, 221, 221);
border-radius: 5px;
margin-bottom: 10px;
@ -13,6 +13,13 @@
box-shadow: 0 3px 10px -2px rgb(161 170 166 / 20%);
}
.wizard-list-edge-status {
grid-area: edgeStatus;
display: flex;
justify-content: flex-end;
align-items: center;
}
.wizard-list-image {
grid-area: image;
font-size: 35px;