mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-01 20:43:33 +00:00
25 lines
650 B
HTML
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>
|