diff --git a/changes/changelog.d/337.bugfix b/changes/changelog.d/337.bugfix new file mode 100644 index 0000000000000000000000000000000000000000..b401c550f5abb4066c6a1fcf1b0926ff6946bc8c --- /dev/null +++ b/changes/changelog.d/337.bugfix @@ -0,0 +1 @@ +Ensure images are not cropped in queue (#337) diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue index 2c193fc6e7cbd40ce938fab0f9eef816e8c37395..4765823f76c2ee1524a60035cb6de1d38b1d2356 100644 --- a/front/src/components/Sidebar.vue +++ b/front/src/components/Sidebar.vue @@ -372,6 +372,9 @@ $sidebar-color: #3d3e3f; tr { cursor: pointer; } + td:nth-child(2) { + width: 55px; + } } .tab[data-tab="library"] { flex-direction: column; @@ -414,6 +417,10 @@ $sidebar-color: #3d3e3f; .ui.message.black { background: $sidebar-color; } + +.ui.mini.image { + width: 100%; +} </style> <style lang="scss">