diff --git a/materialious/android/.idea/other.xml b/materialious/android/.idea/other.xml
index dba9935d..1811ddc7 100644
--- a/materialious/android/.idea/other.xml
+++ b/materialious/android/.idea/other.xml
@@ -47,6 +47,17 @@
+
+
+
+
+
+
+
+
+
+
+
@@ -69,6 +80,17 @@
+
+
+
+
+
+
+
+
+
+
+
@@ -223,6 +245,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -345,6 +389,17 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/materialious/android/app/build.gradle b/materialious/android/app/build.gradle
index c1e9141b..bc4ce0e9 100644
--- a/materialious/android/app/build.gradle
+++ b/materialious/android/app/build.gradle
@@ -7,8 +7,8 @@ android {
applicationId "us.materialio.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 88
- versionName "1.7.6"
+ versionCode 89
+ versionName "1.7.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
diff --git a/materialious/electron/package.json b/materialious/electron/package.json
index aa696cca..11d19ceb 100644
--- a/materialious/electron/package.json
+++ b/materialious/electron/package.json
@@ -1,6 +1,6 @@
{
"name": "Materialious",
- "version": "1.7.6",
+ "version": "1.7.7",
"description": "Modern material design for Invidious.",
"author": {
"name": "Ward Pearce",
diff --git a/materialious/package.json b/materialious/package.json
index 030f40e5..a581228c 100644
--- a/materialious/package.json
+++ b/materialious/package.json
@@ -1,6 +1,6 @@
{
"name": "materialious",
- "version": "1.7.6",
+ "version": "1.7.7",
"private": true,
"scripts": {
"dev": "vite dev",
diff --git a/materialious/static/style.css b/materialious/src/lib/style.css
similarity index 87%
rename from materialious/static/style.css
rename to materialious/src/lib/style.css
index d12df049..10a58bc4 100644
--- a/materialious/static/style.css
+++ b/materialious/src/lib/style.css
@@ -92,4 +92,14 @@ main.root {
html {
scrollbar-width: none !important;
}
+}
+
+@media screen and (max-width: 1000px) {
+ menu {
+ z-index: 9999 !important;
+ position: fixed !important;
+ top: 30% !important;
+ width: 100% !important;
+ background-color: var(--surface-variant) !important;
+ }
}
\ No newline at end of file
diff --git a/materialious/src/routes/(app)/+layout.svelte b/materialious/src/routes/(app)/+layout.svelte
index 188031b4..3303e61a 100644
--- a/materialious/src/routes/(app)/+layout.svelte
+++ b/materialious/src/routes/(app)/+layout.svelte
@@ -25,6 +25,7 @@
syncPartyPeerStore,
themeColorStore
} from '$lib/store';
+ import '$lib/style.css';
import { setAmoledTheme, setStatusBarColor, setTheme } from '$lib/theme';
import { App } from '@capacitor/app';
import { Browser } from '@capacitor/browser';
diff --git a/materialious/src/routes/(app)/watch/[slug]/+page.svelte b/materialious/src/routes/(app)/watch/[slug]/+page.svelte
index 769faa5b..8373e8af 100644
--- a/materialious/src/routes/(app)/watch/[slug]/+page.svelte
+++ b/materialious/src/routes/(app)/watch/[slug]/+page.svelte
@@ -845,18 +845,6 @@
}
}
- @media screen and (max-width: 1000px) {
- menu {
- z-index: 9999;
- position: fixed;
- top: 30%;
- left: 50%;
- width: 100%;
- transform: translate(-50%, 50%);
- background-color: var(--surface-variant);
- }
- }
-
@media screen and (max-width: 1646px) {
.grid {
padding: 0;
diff --git a/update_versions.py b/update_versions.py
index 0c510371..833082da 100644
--- a/update_versions.py
+++ b/update_versions.py
@@ -5,7 +5,7 @@ import json
import os
import re
-LATEST_VERSION = "1.7.6"
+LATEST_VERSION = "1.7.7"
WORKING_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "materialious")
ROOT_PACKAGE = os.path.join(WORKING_DIR, "package.json")