mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 03:08:41 +00:00
30 lines
470 B
SCSS
Executable File
30 lines
470 B
SCSS
Executable File
.ipt-wrap {
|
|
display: table;
|
|
vertical-align: top;
|
|
box-sizing: border-box;
|
|
|
|
.ipt-first {
|
|
width: 100%;
|
|
display: table-cell;
|
|
vertical-align: inherit;
|
|
}
|
|
|
|
.ipt-second {
|
|
padding-left: 5px;
|
|
display: table-cell;
|
|
vertical-align: inherit;
|
|
}
|
|
}
|
|
|
|
.flex-line {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
div {
|
|
flex: 1;
|
|
|
|
&:nth-child(n+1) {
|
|
padding-left: 5px;
|
|
}
|
|
}
|
|
} |