Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -331,15 +331,22 @@ abbr {
border-radius: var(--br-md);
cursor: pointer;

display: grid;
grid-template-columns: 1fr auto;
display: flex;
align-items: center;
justify-content: space-between;
}

.selector__value {
display: flex;
gap: 0.5em;
align-items: center;
width: calc(100% - 30px); /* 30px accounts for the arrow */
}

.selector__value > span {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.selector__value img {
Expand Down Expand Up @@ -379,6 +386,7 @@ abbr {
list-style: none;

box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
z-index: 1;
}

.selector__dropdown:focus-within {
Expand Down
Loading