Skip to content

Commit

Permalink
Merge pull request #810 from nextcloud/fix/page_list_link_height
Browse files Browse the repository at this point in the history
fix(pagelist): Grow link area in page list items to full height
  • Loading branch information
mejo- authored Jul 28, 2023
2 parents 1584c89 + 476a95d commit 2475b0f
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 2475b0f

Please sign in to comment.