Skip to content

Commit

Permalink
feat: add styles to table
Browse files Browse the repository at this point in the history
  • Loading branch information
nermalcat69 committed Oct 1, 2024
1 parent f401f64 commit 1cf4ac5
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions apps/docs/src/css/_docusaurus.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ details summary {
@apply z-[400];
}

details > div {
details>div {
--docusaurus-details-decoration-color: transparent !important;
}

Expand Down Expand Up @@ -266,17 +266,17 @@ h6 {
@apply text-medusa-fg-base;
}

.markdown > h1:first-child,
.markdown > h2,
.markdown > h3 {
.markdown>h1:first-child,
.markdown>h2,
.markdown>h3 {
@apply mb-0.5;
}

.markdown > p {
.markdown>p {
@apply mb-0.5;
}

.markdown > p img {
.markdown>p img {
@apply mt-0.5;
}

Expand All @@ -296,3 +296,23 @@ h6 {
p {
font-size: 14.75px;
}

table {
width: 100%;
border-collapse: collapse;
color: #333;
}

th {
color: white;
padding: 8px;
border: 1px solid #c4c8cd;
}

td {
width: 100%;
background-color: #F2F5F7;
color: #333;
padding: 8px;
border: 1px solid #b6b9bd;
}

0 comments on commit 1cf4ac5

Please sign in to comment.