Add table support
This commit is contained in:
parent
2f7bdc728c
commit
c88ad052ac
2 changed files with 22 additions and 1 deletions
|
@ -198,6 +198,27 @@ blockquote {
|
|||
}
|
||||
}
|
||||
|
||||
table {
|
||||
table-layout: fixed;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
margin: 40px 0;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
th {
|
||||
background: var(--light-background-secondary);
|
||||
|
||||
.dark-theme & {
|
||||
background: var(--dark-background-secondary);
|
||||
}
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
margin-left: 40px;
|
||||
padding: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue