NetNewsWire/iOS/Resources/page.html
Andrew Brehaut 8882d219a6 544 footnote support working on iOS
This commit includes the newsfoot.js script in the iOS page.html file
and copies css from the Mac styleSheet.css into the iOS styleSheet.css.

The is only one difference in the styles between the two: iOS defines left and
right to be in terms of the viewport width rather than a fixed size. This ensures that the popover is always within the visible area.
2019-09-25 12:31:07 +12:00

15 lines
286 B
HTML

<html>
<head>
<meta name="viewport" content="width=device-width">
<style>
:root {
color-scheme: light dark;
}
</style>
<script src="main.js"></script>
<script src="newsfoot.js" async="async"></script>
</head>
<body>
</body>
</html>