Skip to content

Commit

Permalink
init commit for dropdown modification
Browse files Browse the repository at this point in the history
  • Loading branch information
benkates committed Apr 2, 2024
1 parent 474bfb7 commit 88970f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Next

- Add right padding and ellipsis on text overflow to BasicDropdown

## v0.6.0

- Add Theme component and update styles of components accordingly
Expand Down
3 changes: 2 additions & 1 deletion src/lib/BasicDropdown/BasicDropdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
.dropdown-select {
color: var(--color-gray-shade-darker);
padding: var(--spacing-2) var(--spacing-3);
padding: var(--spacing-2) var(--spacing-8) var(--spacing-2) var(--spacing-3);
font-size: var(--font-size-normal);
font-family: Lato, helvetica, sans-serif;
border: 1px solid var(--color-gray-shade-medium);
Expand All @@ -93,5 +93,6 @@
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
text-overflow: ellipsis;
}
</style>

0 comments on commit 88970f1

Please sign in to comment.