Skip to content

Commit

Permalink
fix(pagelist): Grow link area in page list items to full height
Browse files Browse the repository at this point in the history
Fixes: #808

Signed-off-by: Jonas <[email protected]>
  • Loading branch information
mejo- committed Jul 28, 2023
1 parent aab0944 commit a68388b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/PageList/Item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export default {
// border-bottom: 4px solid var(--color-main-background);
margin-bottom: 4px;
padding-left: 0;
padding: 0;
border-radius: var(--border-radius-large);
&.toplevel {
Expand Down Expand Up @@ -451,6 +451,9 @@ export default {
}
.app-content-list-item-link {
display: flex;
align-items: center;
height: 100%;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
Expand Down

0 comments on commit a68388b

Please sign in to comment.