1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/app/network-display/index.scss

37 lines
517 B
SCSS
Raw Normal View History

.network-display {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 0 10px;
border-radius: 4px;
min-height: 25px;
user-select: none;
&--disabled {
cursor: not-allowed;
}
&.chip {
margin: 0;
max-width: 100%;
}
& .chip__label {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
& .chip__left-icon {
margin-left: 4px;
}
& .chip__right-icon {
margin-right: 4px;
}
2019-04-17 19:34:49 +02:00
&--clickable {
cursor: pointer;
}
}