center inputs on page

This commit is contained in:
2025-10-01 13:47:05 +02:00
parent 5dc06b24e6
commit f1cd09a218

View File

@@ -12,4 +12,29 @@
</form> </form>
</body> </body>
<style>
html,
body {
width: 100%;
height: 100%;
}
body, form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4px;
}
input {
width: 300px;
}
button {
font-size: 20px;
width: 100%;
}
</style>
</html> </html>