svelte-todo-23 / src /app.css
akhaliq's picture
akhaliq HF Staff
Upload src/app.css with huggingface_hub
5249238 verified
raw
history blame contribute delete
297 Bytes
/* src/app.css content here */
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
button {
font-family: inherit;
}
input {
font-family: inherit;
}
ul {
margin: 0;
padding: 0;
}
li {
list-style: none;
}