mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
42 lines
773 B
SCSS
42 lines
773 B
SCSS
.network-statistics {
|
|
margin: 24px 12px 12px;
|
|
|
|
&__info {
|
|
border-top: 1px solid var(--color-border-muted);
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
height: 56px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
&__field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
|
|
&:not(:last-child) {
|
|
border-right: 1px solid var(--color-border-muted);
|
|
}
|
|
}
|
|
|
|
&__field-data {
|
|
color: var(--color-text-alternative);
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
&__field-label {
|
|
color: var(--color-text-default);
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
&__tooltip-label {
|
|
font-weight: 700;
|
|
}
|
|
}
|