Skip to content

Commit

Permalink
fix: rm underline on title cards; update highlight bg and font color
Browse files Browse the repository at this point in the history
  • Loading branch information
MSalopek committed Dec 4, 2023
1 parent dde4bdf commit a69ff73
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/src/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,8 @@
background-color: var(--ifm-color-primary);
color: white;
}

&[data-theme="dark"] ::selection{
color: black;
}
}
9 changes: 7 additions & 2 deletions docs/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ html {

/* MAINNAV */
.navbar {
@apply py-2 h-auto border-b border-b-docusaurusColorBorder shadow-none bg-docusaurusBgColor;
@apply pb-2 pt-5 h-auto border-b border-b-docusaurusColorBorder shadow-none bg-docusaurusBgColor;
&__toggle {
@apply bg-card rounded-s h-8 w-8 flex justify-center items-center;
@media (min-width: 997px) {
Expand Down Expand Up @@ -482,7 +482,7 @@ html {
@apply text-[1rem];
}
code {
@apply border-0 px-3 align-baseline font-normal;
@apply border-0 px-3 align-baseline;
}
blockquote {
@apply my-7;
Expand Down Expand Up @@ -532,5 +532,10 @@ html {
@apply my-5;
}
}
.card-section {
a {
@apply no-underline;
}
}
}
}

0 comments on commit a69ff73

Please sign in to comment.