Skip to content

Commit

Permalink
style cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
john-rock committed Oct 23, 2023
1 parent 930f400 commit 2da3079
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
13 changes: 13 additions & 0 deletions website/src/components/quickstartGuideCard/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
color:var(--ifm-menu-color)
}

[data-theme='dark'] .quickstartCard .recently_updated {
color: #fff;
}

.quickstartCard .start {
font-size: 1.125rem;
margin-top: auto;
Expand Down Expand Up @@ -83,6 +87,11 @@
padding: 0rem 0.75rem;
}

[data-theme='dark'] .quickstartCard .tag_container .tag {
background: #374151;
color: #fff;
}

.infoContainer {
display: flex;
margin-bottom: 4rem;
Expand Down Expand Up @@ -121,6 +130,10 @@
color: var(--color-green-blue);
}

[data-theme='dark'] .infoContainer .recently_updated {
color: #fff;
}

@media (max-width: 996px) {
.infoContainer {
gap: 1rem;
Expand Down
7 changes: 6 additions & 1 deletion website/src/components/searchInput/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
border-radius: 0.3125rem;
border: 2px solid var(--navy-200-c-6-ccd-4, #C6CCD4);
min-height: 38px;
font-size: .875rem;
font-size: .975rem;
font-family: var(--ifm-font-family-base);
}

Expand All @@ -16,3 +16,8 @@
all: unset;
-webkit-text-security: initial;
}

[data-theme='dark'] .inputContainer {
background: #1b1b1d;
color: #e3e3e3;
}
7 changes: 6 additions & 1 deletion website/src/components/selectDropdown/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,13 @@
padding: 0 0 0 .5rem;
}

[data-theme='dark'] .selectContainer [class$="-multiValue"] {
background: var(--color-green-blue);
color: #fff;
}

[data-theme='dark'] .selectContainer [class$="-option"]:hover {

background: var(--color-green-blue);
}

.selectContainer [aria-label^="Remove"] {
Expand Down

0 comments on commit 2da3079

Please sign in to comment.