Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
blockscout/apps/explorer_web/assets/css/components/_dot.scss

12 lines
582 B

%dot {
display: inline-block;
height: map-get(map-get($explorer-typography-styles, "body1"), "line-height") / 4;
width: map-get(map-get($explorer-typography-styles, "body1"), "line-height") / 4;
line-height: map-get(map-get($explorer-typography-styles, "body1"), "line-height");
border-radius: 50%;
}
%dot--pending { background-color: explorer-color("gray", "500"); }
%dot--succeeded { background-color: explorer-color("green", "500"); }
%dot--failed { background-color: explorer-color("red", "500"); }
%dot--warned { background-color: explorer-color("yellow", "500"); }