mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
1f943a7d69
* add truncation * add title to show complete package name * Remove hardcoded max-width * truncation * reduced max-width * final changes Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com> Co-authored-by: eriknson <eriks@mail.se>
38 lines
573 B
SCSS
38 lines
573 B
SCSS
@import "design-system";
|
|
|
|
.snaps-authorship-pill {
|
|
display: inline-block;
|
|
|
|
.chip {
|
|
padding-right: 8px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.chip__label {
|
|
max-width: 168px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
.chip {
|
|
background-color: var(--color-background-alternative);
|
|
}
|
|
}
|
|
}
|
|
|
|
.snaps-authorship-icon {
|
|
color: var(--color-icon-alternative);
|
|
}
|
|
|
|
.snaps-authorship-version {
|
|
border-radius: 100px;
|
|
line-height: 100%;
|
|
}
|
|
|
|
.snaps-authorship-version > span {
|
|
vertical-align: middle;
|
|
}
|