Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
8 changes: 1 addition & 7 deletions src/modules/modals/CreateRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<template>
<NcDialog v-if="showModal"
:name="t('tables', 'Create row')"
size="normal"
size="large"
data-cy="createRowModal"
@closing="actionCancel">
<div class="modal__content" @keydown="onKeydown">
Expand Down Expand Up @@ -172,12 +172,6 @@ export default {
justify-content: end;
}

:where(.fix-col-1.end) {
display: inline-block;
position: relative;
left: 65%;
}

:where(.slot.fix-col-2) {
min-width: 50%;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ export default {
}

pre {
white-space: pre;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}

</style>
Loading