Skip to content

Commit

Permalink
more minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PineND committed Dec 4, 2024
1 parent 4a1d05e commit 01aa953
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
left: 50%;
transform: translate(-50%, -50%);
width: 90vw;
min-width: 450px;
max-width: 1068px;
max-height: 80vh;
padding: 24px;
Expand Down Expand Up @@ -92,7 +93,7 @@
font-weight: 400;
border-radius: 4px;
border: 1px solid var(--border-color);
min-width: 231px;
min-width: 230px;
}

.select__menu {
Expand Down Expand Up @@ -193,7 +194,7 @@
gap: 16px;
margin-top: 5px;
max-width: 500px;
margin-left: 18px;
margin-left: clamp(4px, 4%, 18px);
margin-right: auto;

span {
Expand Down Expand Up @@ -253,16 +254,20 @@
color: var(--paragraph-color);
font-size: 14px;
cursor: pointer;
white-space: nowrap;

input[type="radio"] {
appearance: none;
min-width: 16px;
min-height: 16px;
width: 16px;
height: 16px;
border: 2px solid var(--border-color);
border-radius: 50%;
margin: 0;
cursor: pointer;
transition: all 0.2s ease;
flex-shrink: 0;

&:checked {
border-color: var(--blue-500);
Expand Down

0 comments on commit 01aa953

Please sign in to comment.