Skip to content

Commit

Permalink
feat(TaskConfig): maximum height
Browse files Browse the repository at this point in the history
  • Loading branch information
martsimq committed Jul 19, 2024
1 parent adfd469 commit 6e31e13
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/TaskConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ async function download() {
</script>
<template>
<el-card
style="position: absolute; bottom: 30px; right: 30px; width: 500px"
style="
position: absolute;
bottom: 30px;
right: 30px;
width: 500px;
max-height: calc(100vh - 130px);
overflow-y: auto;
"
shadow="hover"
>
<el-button
Expand Down

0 comments on commit 6e31e13

Please sign in to comment.