hubl/src/styles/hubl-framework/segments/positions.scss

17 lines
205 B
SCSS
Raw Normal View History

2020-12-04 14:44:45 +00:00
.segment {
position: relative;
.align-middle {
transform: translateY(50%);
}
&.float-left {
float: left;
}
&.float-right {
float: right;
}
2020-12-09 12:55:06 +00:00
&.center {
margin: 0 auto;
}
2020-12-04 14:44:45 +00:00
}