Fix popup alignment

This commit is contained in:
Yamboy1 2020-01-12 09:11:31 +13:00
parent 5ad04312f7
commit c155eeb4a7
2 changed files with 6 additions and 0 deletions

View file

@ -3,3 +3,7 @@ body {
text-align: center;
}
.container {
display: inline-block;
text-align: left;
}

View file

@ -4,6 +4,7 @@
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="container">
<label>
Enable:
<input class="enable" type="checkbox" />
@ -15,6 +16,7 @@
<input type="radio" name="redirect" value="lbry.tv" /> LBRY.tv <br>
<input type="radio" name="redirect" value="app"/> LBRY App
</label>
</div>
<script src="popup.js"></script>
</body>
</html>