update design

This commit is contained in:
Chneemann 2024-04-27 22:56:05 +02:00
parent b26f042a39
commit 8754458736
2 changed files with 6 additions and 5 deletions

View file

@ -24,7 +24,7 @@ section {
} }
.edit-task-overlay-content { .edit-task-overlay-content {
height: calc(700px - 128px); max-height: calc(700px - 128px);
padding: 0 6px; padding: 0 6px;
overflow-y: auto; overflow-y: auto;
} }
@ -192,14 +192,14 @@ p {
} }
.subtasks { .subtasks {
padding: 12px 0; max-height: 130px;
margin-right: 14px; overflow-x: auto;
margin-top: 12px;
.single-subtask { .single-subtask {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 6px 9px; padding: 6px 9px;
width: 100%;
cursor: pointer; cursor: pointer;
p { p {
padding: 0; padding: 0;

View file

@ -1,6 +1,7 @@
.overlay { .overlay {
width: 925px; width: 925px;
height: 700px; height: fit-content;
max-height: 700px;
padding: 48px 40px 48px 40px; padding: 48px 40px 48px 40px;
border-radius: 30px; border-radius: 30px;
background-color: var(--white); background-color: var(--white);