Skip to content

Commit c43023b

Browse files
Web version: add favicon, fix container width and height
1 parent 88d6e93 commit c43023b

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

web/favicon.ico

15 KB
Binary file not shown.

web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Web Audio Mastering</title>
77
<link rel="stylesheet" href="styles.css">
8-
<link rel="icon" href="logo-icon.png" type="image/png">
8+
<link rel="icon" href="favicon.ico" type="image/x-icon">
99
</head>
1010
<body>
1111
<div class="app-container web-version">

web/styles.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,10 @@ button:active:not(:disabled) {
11681168
/* Web Version Overrides */
11691169
.web-version {
11701170
padding-top: 0;
1171-
overflow-y: auto;
1171+
max-width: 1280px;
1172+
margin: 0 auto;
1173+
height: auto;
1174+
min-height: auto;
11721175
}
11731176

11741177
.web-version .app-header {
@@ -1177,6 +1180,6 @@ button:active:not(:disabled) {
11771180

11781181
body {
11791182
overflow: auto;
1180-
min-height: 100vh;
11811183
height: auto;
1184+
min-height: auto;
11821185
}

0 commit comments

Comments
 (0)