mempool/frontend/src/app/components/address-group/address-group.component.scss

101 lines
1.3 KiB
SCSS
Raw Normal View History

2024-02-16 02:30:51 +00:00
.frame {
position: relative;
background: #24273e;
padding: 0.5rem;
height: calc(100% + 60px);
}
2024-02-16 02:50:16 +00:00
.heading {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: start;
& > * {
flex-basis: 0;
flex-grow: 1;
}
h3 {
text-align: center;
margin: 0 1em;
}
2024-02-16 02:50:16 +00:00
}
2024-02-16 02:30:51 +00:00
.pagination {
position: absolute;
bottom: 0.5rem;
right: 0.5rem;
}
.table {
margin-top: 0.5em;
2024-02-16 02:30:51 +00:00
td, th {
padding: 0.15rem 0.5rem;
&.address {
width: auto;
}
&.btc {
width: 140px;
text-align: right;
}
&.fiat {
width: 142px;
text-align: right;
}
}
tr {
border-collapse: collapse;
&:first-child {
border-bottom: solid 1px white;
td, th {
padding-bottom: 0.3rem;
}
}
&:nth-child(2) {
td, th {
padding-top: 0.3rem;
}
}
&:nth-child(even) {
background: #181b2d;
}
}
@media (min-width: 528px) {
td, th {
&.btc {
width: 160px;
}
&.fiat {
width: 140px;
}
}
}
@media (min-width: 576px) {
td, th {
&.btc {
width: 170px;
}
&.fiat {
width: 140px;
}
}
}
@media (min-width: 992px) {
td, th {
&.btc {
width: 210px;
}
&.fiat {
width: 140px;
}
}
}
}