33 lines
340 B
Plaintext
33 lines
340 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%;
|
|
}
|
|
|
|
|