Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions dashboard/src/components/extension/SkillsSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@
<v-dialog
v-model="editorDialog.show"
max-width="1180px"
:fullscreen="$vuetify.display.mdAndDown"
Comment thread
sourcery-ai[bot] marked this conversation as resolved.
Comment thread
sourcery-ai[bot] marked this conversation as resolved.
Comment thread
mantoujun12 marked this conversation as resolved.
:persistent="editorDialog.saving"
>
<v-card class="skill-editor-dialog">
Expand Down Expand Up @@ -2402,9 +2403,28 @@ export default {
}

@media (max-width: 860px) {
.skill-editor-dialog {
max-height: none;
overflow-y: auto;
}

.skills-list {
grid-template-columns: minmax(0, 1fr);
}

.skill-editor {
grid-template-columns: minmax(0, 1fr);
grid-template-rows: auto minmax(0, 1fr);
min-height: 0;
}

.skill-editor__files {
max-height: 20vh;
}

.skill-editor__monaco {
min-height: 40vh;
}

.skill-list-item :deep(.outlined-action-list-item__actions) {
gap: 8px;
Expand Down
Loading