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>
|
<Tab>Completed</Tab>
|
||||||
</TabList>
|
</TabList>
|
||||||
<TabPanel>
|
<TabPanel>
|
||||||
<ul>{incompleteTodos}</ul>
|
<ul className="todolist-indent">{incompleteTodos}</ul>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel>
|
<TabPanel>
|
||||||
<ul>{completedTodos}</ul>
|
<ul className="todolist-indent">{completedTodos}</ul>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -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@1,300&display=swap');
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Open Sans:ital,wght@0,400;1,100&family=Roboto&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 {
|
.add-task-input {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
@ -45,6 +41,7 @@
|
||||||
font-family: Roboto, sans-serif;
|
font-family: Roboto, sans-serif;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
|
|
@ -54,6 +51,9 @@
|
||||||
.description > ul {
|
.description > ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.habit-text {
|
.habit-text {
|
||||||
text-align: left !important;
|
text-align: left !important;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue