improve ledgibility of whatsnewText

This commit is contained in:
SethBurkart123
2023-10-11 16:43:15 +11:00
parent c5cab55002
commit 1aca0584af
+11 -1
View File
@@ -2785,13 +2785,13 @@ body {
width: 96%; width: 96%;
display: flex; display: flex;
margin: 0 auto; margin: 0 auto;
border-radius: 10px;
} }
.whatsnewImg { .whatsnewImg {
margin: 0.5rem auto; margin: 0.5rem auto;
width: 90%; width: 90%;
border-radius: 1rem; border-radius: 1rem;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
} }
.whatsnewTextContainer { .whatsnewTextContainer {
@@ -2838,6 +2838,7 @@ body {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
z-index: 2;
} }
.whatsnewFooter a { .whatsnewFooter a {
@@ -2866,3 +2867,12 @@ body {
font-family: "IconFamily"; font-family: "IconFamily";
pointer-events: none; pointer-events: none;
} }
.whatsnewTextContainer h1:not(.whatsnewTextHeader) {
position: sticky;
width: 100%;
top: 0;
background: var(--background-primary) !important;
z-index: 1;
padding: 10px;
}