1
0
Fork 0
blog/src/features/Web3/components/Preview/Data.module.css

47 lines
681 B
CSS
Raw Normal View History

2023-11-03 21:56:08 +01:00
.table {
2023-11-05 17:40:44 +01:00
width: 100%;
display: table;
2023-11-02 22:47:14 +01:00
margin-bottom: calc(var(--spacer) / 1.5);
}
table[aria-disabled='true'] {
opacity: 0.5;
pointer-events: none;
}
.table td {
2023-11-03 00:33:06 +01:00
padding: calc(var(--spacer) / 4) calc(var(--spacer) / 3);
2023-11-02 22:47:14 +01:00
}
2023-11-05 17:40:44 +01:00
.to,
.from {
display: block;
word-break: break-all;
background: none;
padding: 0;
}
2023-11-02 22:47:14 +01:00
.label {
color: var(--text-color-light);
vertical-align: top;
2023-11-03 00:33:06 +01:00
width: 6rem;
2023-11-02 22:47:14 +01:00
}
2023-11-05 17:40:44 +01:00
.amount {
display: flex;
align-items: center;
}
2024-03-14 14:18:21 +01:00
.table :global(.TokenLogo) {
2023-11-05 17:40:44 +01:00
width: 18px;
height: 18px;
2024-03-14 14:18:21 +01:00
border-radius: 50%;
border: 1px solid var(--border-color);
}
.table :global(.TokenLogo) img {
width: 100%;
height: 100%;
border-radius: 50%;
2023-11-05 17:40:44 +01:00
}