Utsavjain4561/copy-pasty-chrome-extension

you-tube list items style changed on item clicked

Closed this issue · 1 comments

On click event of any list item the styling of those list items changes which have a you-tube video thumbnail
I suggest @Netfreak21 to change the styling accordingly

change the popup.css file as below . This happened because float right is not available in context of display:flex. After changing it to display: contents the child's children will behave directly as children of its parent and use justify-content:space between to space the delete icon with the list text

content{
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.list-div{
    
    display: contents;
    width:20rem;
}

Hence the issue is being closed !!