Skip to content

Commit

Permalink
fixes for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
addievo committed Jul 19, 2023
1 parent 9ef669c commit 1f5bda2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
<html>
<head>
<title>Todo List</title>
<style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
padding: 0 5%;
display: flex;
flex-direction: column;
min-height: 100vh;
}

h1 {
Expand All @@ -32,6 +36,7 @@
list-style-type: none;
padding: 0;
margin: 0;
flex-grow: 1;
}

#todoList li {
Expand Down Expand Up @@ -69,6 +74,10 @@
body {
padding: 0 3%;
}

h1, #todoInput, #todoList li label, button {
font-size: 18px;
}
}
</style>
</head>
Expand Down

0 comments on commit 1f5bda2

Please sign in to comment.