@dabapps/roe
Version:
A Collection of React Components for Project Development
35 lines (27 loc) • 474 B
text/less
.border-top {
border-top: @border-base;
}
.border-bottom {
border-bottom: @border-base;
}
.section {
.border-bottom();
padding: @padding-large @gutter-width / 2;
margin-left: -@gutter-width / 2;
margin-right: -@gutter-width / 2;
&:last-child {
border-bottom: @border-none;
}
}
.position-relative {
position: relative;
}
.position-absolute {
position: absolute;
}
.position-fixed {
position: fixed;
}
.position-static {
position: static;
}