60 lines
912 B
CSS
60 lines
912 B
CSS
:host {
|
|
display: block;
|
|
font-family: sans-serif;
|
|
width: 100%;
|
|
}
|
|
|
|
.admin-card {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.header-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.card-error {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.miner-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.miner-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.5rem;
|
|
border-radius: 0.25rem;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.section-title {
|
|
margin-top: 1.5rem;
|
|
border-top: 1px solid #e0e0e0;
|
|
padding-top: 1.5rem;
|
|
}
|
|
|
|
.path-list ul {
|
|
list-style: none;
|
|
padding: 0.5rem;
|
|
margin: 0;
|
|
font-family: monospace;
|
|
border-radius: 0.25rem;
|
|
border: 1px solid #e0e0e0;
|
|
font-size: 0.749rem; /* Smaller font for easier selection */
|
|
}
|
|
|
|
.path-list li {
|
|
padding: 0.25rem 0;
|
|
}
|
|
|
|
.button-spinner {
|
|
font-size: 1em;
|
|
margin: 0;
|
|
}
|