mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 09:10:02 +01:00
19 lines
374 B
SCSS
19 lines
374 B
SCSS
|
.block-overview-tooltip {
|
||
|
position: absolute;
|
||
|
background: rgba(#11131f, 0.95);
|
||
|
border-radius: 4px;
|
||
|
box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
|
||
|
color: #b1b1b1;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
padding: 10px 15px;
|
||
|
text-align: left;
|
||
|
width: 320px;
|
||
|
pointer-events: none;
|
||
|
|
||
|
&.clickable {
|
||
|
pointer-events: all;
|
||
|
}
|
||
|
}
|