Files
zulip-desktop/app/renderer/preference.html
Anders Kaseorg ffe87a9729 preference: Encapsulate in a custom element.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2022-02-28 15:58:36 -08:00

25 lines
650 B
HTML

<!DOCTYPE html>
<html lang="en" class="responsive desktop">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Zulip - Settings</title>
<link rel="stylesheet" href="css/fonts.css" />
<style>
html,
body,
body > div {
margin: 0;
height: 100%;
}
</style>
</head>
<body>
<zd-preference-view></zd-preference-view>
<script>
const {PreferenceView} = require("./js/pages/preference/preference.js");
document.body.append(new PreferenceView().$view);
</script>
</body>
</html>