Fixed Indent issue
This commit is contained in:
parent
b80d2f8dc1
commit
fc6506525c
2 changed files with 7 additions and 7 deletions
|
|
@ -36,10 +36,10 @@ export default function Index(props: any){
|
|||
<Tab>Completed</Tab>
|
||||
</TabList>
|
||||
<TabPanel>
|
||||
<ul>{incompleteTodos}</ul>
|
||||
<ul className="todolist-indent">{incompleteTodos}</ul>
|
||||
</TabPanel>
|
||||
<TabPanel>
|
||||
<ul>{completedTodos}</ul>
|
||||
<ul className="todolist-indent">{completedTodos}</ul>
|
||||
</TabPanel>
|
||||
</Tabs>
|
||||
</div>
|
||||
|
|
|
|||
10
styles.css
10
styles.css
|
|
@ -1,10 +1,6 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,300&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Open Sans:ital,wght@0,400;1,100&family=Roboto&display=swap');
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.add-task-input {
|
||||
display: flex;
|
||||
}
|
||||
|
|
@ -45,6 +41,7 @@
|
|||
font-family: Roboto, sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.description {
|
||||
|
|
@ -54,6 +51,9 @@
|
|||
.description > ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.habit-text {
|
||||
text-align: left !important;
|
||||
|
|
@ -320,4 +320,4 @@ button {
|
|||
.description>ul {
|
||||
list-style-type: disc;
|
||||
margin-left: 10% !important;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue