diff --git a/changes/changelog.d/184.bugfix b/changes/changelog.d/184.bugfix new file mode 100644 index 000000000..354b691db --- /dev/null +++ b/changes/changelog.d/184.bugfix @@ -0,0 +1 @@ +Fixed small UI glitches/bugs in federation tabs (#184) diff --git a/front/src/App.vue b/front/src/App.vue index e8cac7476..a21337428 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -97,6 +97,12 @@ html, body { } } +.ellipsis { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + .ui.small.text.container { max-width: 500px !important; } diff --git a/front/src/components/federation/LibraryCard.vue b/front/src/components/federation/LibraryCard.vue index 757561fb3..a16c80f7e 100644 --- a/front/src/components/federation/LibraryCard.vue +++ b/front/src/components/federation/LibraryCard.vue @@ -1,8 +1,12 @@