dashboard: show pending admin checklist in apps list/grid

This commit is contained in:
Johannes Zellner
2024-06-18 16:37:21 +02:00
parent f15b4a4f4b
commit 98e97a0f9b
3 changed files with 35 additions and 4 deletions

View File

@@ -534,6 +534,27 @@ textarea {
}
}
.app-checklist-badge {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
left: calc(50% - 12px);
top: -12px;
font-size: 14px;
height: 24px;
width: 24px;
color: white;
cursor: pointer;
background-color: $brand-danger;
border-radius: 34px;
transition: all 100ms ease-out;
&:hover {
transform: scale(1.4);
}
}
.app-postinstall-message {
max-height: 500px;
overflow-x: none;