Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
feat: increase user name font-size to 14px
Browse files Browse the repository at this point in the history
  • Loading branch information
Raspincel committed Dec 15, 2023
1 parent 9b4685b commit daa1f8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/web-components/dropdown/index.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ export const dropdownStyle = css`
bottom: 44px;
}
.text.username {
font-size: 14px;
line-height: 16px;
}
.items li {
color: rgb(var(--sv-gray-600));
text-transform: uppercase;
Expand Down
2 changes: 1 addition & 1 deletion src/web-components/dropdown/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export class Dropdown extends WebComponentsBaseElement {
private get renderHeader() {
if (!this.name) return html``;
return html` <div class="header">
<span class="text">${this.name}</span>
<span class="text username">${this.name}</span>
<span class="sv-hr"></span>
</div>`;
}
Expand Down

0 comments on commit daa1f8f

Please sign in to comment.