Browse Source

Hi,

There is text overflow issue that when text length is large then causes bug that button moves up and it doesn't looks good overall. So put a text limit using css.

Signed-off-by: Ayush Sahu <aztrexdx@gmail.com>
pull/463/head
Ayush Sahu 3 years ago
parent
commit
85ed1d023d
  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