diff --git a/public/content.css b/public/content.css index dc2b1ba1..285ba11d 100644 --- a/public/content.css +++ b/public/content.css @@ -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; diff --git a/src/components/NoticeComponent.tsx b/src/components/NoticeComponent.tsx index 78471341..2687640f 100644 --- a/src/components/NoticeComponent.tsx +++ b/src/components/NoticeComponent.tsx @@ -109,7 +109,7 @@ class NoticeComponent extends React.Component { mouseDownInfo: null, mouseMoved: false, right: bounds[0], - bottom: bounds[1] + bottom: props.showInSecondSlot ? 290 : bounds[1] } }