@nodeject/ui-components
Version:
UI library for non-trivial components
38 lines (33 loc) • 566 B
text/less
.alignLeftRight {
display: flex;
justify-content: space-between;
align-items: baseline;
width: 100%;
}
.horizontalList {
> ul {
display: inline-flex;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
> li {
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 .3rem;
}
}
}
.alignCenter {
display: flex;
flex-direction: column;
align-items: center;
}
.alignTopBottom {
.bottom {
position: absolute;
bottom: 0;
width: 100%;
}
}