diff --git a/src/SEQTA.ts b/src/SEQTA.ts index c418cbb7..0972cb97 100644 --- a/src/SEQTA.ts +++ b/src/SEQTA.ts @@ -364,16 +364,10 @@ export function OpenAboutPage() { ` ).firstChild - let imagecont = document.createElement('div') - imagecont.classList.add('whatsnewImgContainer') - - let textcontainer = document.createElement('div') - textcontainer.classList.add('whatsnewTextContainer') - let text = stringToHTML( /* html */ ` -
+
BetterSEQTA+ is a fork of BetterSEQTA which was originally developed by Nulkem, which was discontinued. BetterSEQTA+ continued development of BetterSEQTA, while incorporating a plethora of features.
We are currently working on fixing bugs and adding good features. If you want to make a feature request or report a bug, you can do so on GitHub (find icon below).
@@ -406,8 +400,6 @@ export function OpenAboutPage() { exitbutton.id = 'whatsnewclosebutton' container.append(header) - container.append(imagecont) - container.append(textcontainer) container.append(text as ChildNode) container.append(footer as ChildNode) container.append(exitbutton) diff --git a/src/css/injected.scss b/src/css/injected.scss index 9574105a..e31bab32 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -3070,3 +3070,11 @@ li.MessageList__unread___3imtO { padding-left: 0px; padding-bottom: 8px; } + +.whatsnewTextContainer img { + width: 100%; + border-radius: 12px; + aspect-ratio: 16/9; + object-fit: cover; + margin-bottom: 12px; +} \ No newline at end of file