diff --git a/src/components/footer.js b/src/components/footer.js
index 7a524c7a9313..2f2000ba070c 100644
--- a/src/components/footer.js
+++ b/src/components/footer.js
@@ -89,21 +89,6 @@ const Footer = () => {
href="https://www.commonhaus.org/trademarks/">Trademark List. Trademarks of third parties are owned
by their respective holders and their mention here does not suggest any endorsement or association.
-
-
- Sponsored by
-
-
-
-
)
}
diff --git a/src/components/footer.test.js b/src/components/footer.test.js
index 625ad5cdb9f8..757e2d228e23 100644
--- a/src/components/footer.test.js
+++ b/src/components/footer.test.js
@@ -9,8 +9,8 @@ describe("footer", () => {
render()
})
- it("renders a supported by statement", () => {
- expect(screen.getByText(supportedText)).toBeTruthy()
+ it("does not renders a supported by statement", () => {
+ expect(screen.findByText(supportedText)).toBeTruthy()
})
})
diff --git a/src/style.css b/src/style.css
index 0c64a83c0a73..60919c689c45 100644
--- a/src/style.css
+++ b/src/style.css
@@ -171,6 +171,17 @@ html {
font-weight: var(--font-weight-normal);
}
+@media screen and (max-width: 1366px) {
+ html {
+ --site-margins: 4rem;
+ --navbar-padding: 1.5rem;
+ --a-generous-space: 50px;
+ --a-modest-space: 12px;
+ --a-small-space: 6px;
+ --a-vsmall-space: 5px;
+ }
+}
+
/** Adjustments for small screens */
@media screen and (max-width: 1024px) {
html {
diff --git a/src/templates/extensions-added-by-year-list.test.js b/src/templates/extensions-added-by-year-list.test.js
index 6779f6516f6f..26dcffbb27b1 100644
--- a/src/templates/extensions-added-by-year-list.test.js
+++ b/src/templates/extensions-added-by-year-list.test.js
@@ -90,7 +90,7 @@ describe("extensions added page for a year", () => {
it("renders the correct link", () => {
const links = screen.getAllByRole("link")
- const link = links[links.length - 7]// Look at the last one that's not in the footer, because the top of the page will have a menu and the bottom will have footers - this is also testing the sorting
+ const link = links[links.length - 6]// Look at the last one that's not in the footer, because the top of the page will have a menu and the bottom will have footers - this is also testing the sorting
expect(link).toBeTruthy()
// Hardcoding the host is a bit risky but this should always be true in test environment
expect(link.href).toBe("http://localhost/ambiguous-slug")
diff --git a/src/templates/extensions-added-list.test.js b/src/templates/extensions-added-list.test.js
index a691dbf6d687..6ea12c7bb340 100644
--- a/src/templates/extensions-added-list.test.js
+++ b/src/templates/extensions-added-list.test.js
@@ -93,7 +93,7 @@ describe("extensions added page", () => {
it("renders the correct link", () => {
const links = screen.getAllByRole("link")
- const link = links[links.length - 7]// Look at the last one that's not in the footer, because the top of the page will have a menu and the bottom will have footers - this is also testing the sorting
+ const link = links[links.length - 6]// Look at the last one that's not in the footer, because the top of the page will have a menu and the bottom will have footers - this is also testing the sorting
expect(link).toBeTruthy()
// Hardcoding the host is a bit risky but this should always be true in test environment
expect(link.href).toBe("http://localhost/ambiguous-slug")