Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
emiMobile
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mac Stephens
emiMobile
Commits
da822be6
Commit
da822be6
authored
Aug 27, 2026
by
Michael Brachmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
height fixes ios
parent
fe40bd7b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
View.Main.html
webEMIMobile/View.Main.html
+1
-1
app.css
webEMIMobile/css/app.css
+10
-0
index.html
webEMIMobile/index.html
+1
-1
No files found.
webEMIMobile/View.Main.html
View file @
da822be6
<div
class=
"d-flex flex-column vh-100"
>
<!-- Top Nav -->
<nav
class=
"navbar navbar-light bg-primary border-light text-light py-2 flex-shrink-0"
>
<nav
id=
"top_nav"
class=
"navbar navbar-light bg-primary border-light text-light py-2 flex-shrink-0"
>
<div
class=
"container-fluid"
>
<!-- App title + current view title -->
...
...
webEMIMobile/css/app.css
View file @
da822be6
...
...
@@ -70,6 +70,16 @@ html, body {
overflow
:
hidden
;
}
/* iOS safe area: absorb status bar into top nav, home indicator into bottom nav */
@supports
(
padding-top
:
env
(
safe-area-inset-top
))
{
#top_nav
{
padding-top
:
calc
(
0.5rem
+
env
(
safe-area-inset-top
));
}
#bottom_nav
{
padding-bottom
:
calc
(
0.5rem
+
env
(
safe-area-inset-bottom
));
}
}
.tab-hidden
{
display
:
none
!important
;
}
...
...
webEMIMobile/index.html
View file @
da822be6
...
...
@@ -2,7 +2,7 @@
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
/>
<meta
content=
"width=device-width, initial-scale=1"
name=
"viewport"
/>
<meta
content=
"width=device-width, initial-scale=1
, viewport-fit=cover
"
name=
"viewport"
/>
<noscript>
Your browser does not support JavaScript!
</noscript>
<link
href=
"data:;base64,="
rel=
"icon"
/>
<title>
emiMobile
</title>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment