Allow mobile users to zoom the dashboard #102
|
|
@ -2,7 +2,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Stackchain Dashboard</title>
|
<title>Stackchain Dashboard</title>
|
||||||
<style>
|
<style>
|
||||||
:root { color-scheme: dark; --bg:#050c15; --panel:#0b1526; --line:#1b2d45; --text:#e5e7eb; --accent:#60a5fa; }
|
:root { color-scheme: dark; --bg:#050c15; --panel:#0b1526; --line:#1b2d45; --text:#e5e7eb; --accent:#60a5fa; }
|
||||||
|
|
|
||||||
|
|
@ -10,3 +10,12 @@ async def test_dashboard_renders_outside_repository_working_directory(monkeypatc
|
||||||
html = await dashboard()
|
html = await dashboard()
|
||||||
|
|
||||||
assert "Stackchain Dashboard" in html
|
assert "Stackchain Dashboard" in html
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.anyio
|
||||||
|
async def test_dashboard_viewport_allows_mobile_zoom():
|
||||||
|
html = await dashboard()
|
||||||
|
|
||||||
|
assert 'name="viewport"' in html
|
||||||
|
assert "width=device-width" in html
|
||||||
|
assert "user-scalable=no" not in html
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user