25 lines
290 B
CSS
25 lines
290 B
CSS
.table-with-markdown {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
background: var(--color-brand-text-bg);
|
|
padding: 16px;
|
|
|
|
table,
|
|
td,
|
|
th {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
td,
|
|
th {
|
|
padding: 8px 16px;
|
|
}
|
|
|
|
th {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
}
|
|
}
|