mempool/frontend/src/app/components/server-health/server-health.component.scss

72 lines
1.1 KiB
SCSS
Raw Normal View History

2024-03-03 20:31:02 +00:00
.tomahawk {
.links {
float: right;
text-align: right;
margin-top: 1em;
a, span {
margin-left: 1em;
}
}
.dashboard-title {
text-align: left;
}
2024-03-03 20:31:02 +00:00
.status-panel {
max-width: 720px;
margin: auto;
margin-top: 2em;
padding: 1em;
background: #24273e;
}
.status-table {
width: 100%;
td, th {
padding: 0.25em;
2024-03-05 23:16:20 +00:00
&.rank, &.flag {
width: 28px;
text-align: right;
}
2024-03-03 20:31:02 +00:00
&.rtt, &.height {
2024-03-05 23:16:20 +00:00
width: 92px;
2024-03-03 20:31:02 +00:00
text-align: right;
}
2024-03-05 23:16:20 +00:00
&.only-small {
display: table-cell;
&.rtt {
width: 60px;
}
}
&.only-large {
display: none;
}
&.height {
padding-right: 0.5em;
}
&.host {
width: auto;
overflow: hidden;
text-overflow: ellipsis;
}
@media (min-width: 576px) {
&.rank, &.flag {
width: 32px;
}
&.rtt, &.height {
width: 96px;
}
&.only-small {
display: none;
}
&.only-large {
display: table-cell;
}
}
2024-03-03 20:31:02 +00:00
}
}
}