@axerunners/insight-ui
Version:
An open-source frontend for the Insight API. The Insight API provides you with a convenient, powerful and simple way to query and broadcast data on the Axe network and build your own services with it.
19 lines (17 loc) • 460 B
text/less
// Single side border-radius
.border-top-radius(@radius) {
border-top-left-radius: @radius;
border-top-right-radius: @radius;
}
.border-right-radius(@radius) {
border-top-right-radius: @radius;
border-bottom-right-radius: @radius;
}
.border-bottom-radius(@radius) {
border-bottom-right-radius: @radius;
border-bottom-left-radius: @radius;
}
.border-left-radius(@radius) {
border-top-left-radius: @radius;
border-bottom-left-radius: @radius;
}