Skip to content

Commit

Permalink
keep working on styles
Browse files Browse the repository at this point in the history
  • Loading branch information
john-rock committed Oct 2, 2023
1 parent 74ef467 commit e7031af
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 1rem;
padding-top: 2rem;
padding-top: 4rem;
}

.quickstartFilterContainer > div:first-child {
Expand Down
30 changes: 25 additions & 5 deletions website/src/components/selectDropdown/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
border: 2px solid var(--navy-200-c-6-ccd-4, #C6CCD4);
}

.selectContainer .select__menu {
background: purple;
}
.selectContainer:focus-within, .selectContainer:active {
border: 2px solid var(--navy-200-c-6-ccd-4, red);
}

.selectContainer [class$="-control"] {
padding: 0rem 1rem
Expand All @@ -29,11 +29,31 @@
padding: .5rem;
}

.selectContainer [class$="-option"]:hover {
.selectContainer [class$="-option"]:hover, .selectContainer [class$="-option"]:active, .selectContainer [class$="-option"]:focus-within {
background: #262a38;
color: #fff;
}

.selectContainer [class$="-multiValue"] {
margin-right: .275rem;
background: #e6e6e6;
border-radius: 0.3125rem;
padding: 0 0 0 .5rem;
}

[data-theme='dark'] .selectContainer [class$="-option"]:hover {
background: #1F2937;

}

.selectContainer [class$="-MultiValueRemove"] {
padding: .5rem;
border-radius: 0 0.3125rem 0.3125rem 0;
padding-left: 4px;
padding-right: 4px;
margin-left: .2rem;
}

.selectContainer [class$="-MultiValueRemove"]:hover {
background-color: rgb(255, 189, 173);
color: rgb(222, 53, 11);
}

0 comments on commit e7031af

Please sign in to comment.