Browse Source

Merge pull request #463 from AztrexDX/expanded_form_fix

Expanded form fix for text overflow
pull/464/head
Pranav C 3 years ago committed by GitHub
parent
commit
e138604ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue

7
packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue

@ -476,6 +476,12 @@ export default {
color: var(--v-primary-base);
}
.title.text-center {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
::v-deep {
.v-breadcrumbs__item:nth-child(odd) {
@ -597,6 +603,7 @@ h5 {
*
* @author Naveen MR <oof1lab@gmail.com>
* @author Pranav C Balan <pranavxc@gmail.com>
* @author Ayush Sahu <aztrexdx@gmail.com>
*
* @license GNU AGPL version 3 or any later version
*

Loading…
Cancel
Save