Files
cms_thermo_active/Step/wwwroot/assets/styles/base/grid-system.less
T

38 lines
424 B
Plaintext

// out: false, sourceMap: false, main: ../style.less
@row: row;
@col: col;
.@{row} {
display: flex;
width: 100%;
flex-direction: row;
}
.@{col} {
display: flex;
flex-direction: column;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.full-height {
height: 100%;
}
.full-width {
width: 100%;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}