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/_pagination.scss

35 lines
791 B

.pagination {
display: block;
&-list {
list-style: none;
margin: 0;
padding: 0;
white-space: nowrap;
}
li {
display: inline-block;
margin: 0;
margin-right: explorer-size(-3);
&:last-of-type { margin-right: 0; }
}
&-link {
@include explorer-typography("body1");
display: block;
line-height: 1;
color: lighten(explorer-color("gray", "700"), 10);
text-decoration: none;
padding: explorer-size(-3) explorer-size(-3) + explorer-size(-5);
border: 1px solid lighten(explorer-color("gray", "500"), 10);
border-radius: explorer-size(-5);
&:hover,
&.is-current {
border-color: explorer-color("blue", "500");
background: explorer-color("blue", "500");
color: explorer-color("white");
}
}
}