Fix second skip notice slot not working

This commit is contained in:
Ajay 2023-12-22 11:52:42 -05:00
parent 8496e32cfe
commit 9d0e42de76
2 changed files with 1 additions and 6 deletions

View file

@ -320,11 +320,6 @@ div:hover > .sponsorBlockChapterBar {
padding-bottom: 7.8%;
}
/* if two are very close to eachother */
.secondSkipNotice {
bottom: 290px;
}
.noticeLeftIcon {
display: flex;
align-items: center;

View file

@ -109,7 +109,7 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
mouseDownInfo: null,
mouseMoved: false,
right: bounds[0],
bottom: bounds[1]
bottom: props.showInSecondSlot ? 290 : bounds[1]
}
}