mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 19:18:40 +00:00
39 lines
573 B
SCSS
Executable File
39 lines
573 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;
|
|
}
|
|
}
|
|
}
|
|
|
|
div.sticky, section.sticky {
|
|
position: sticky;
|
|
top: 1rem;
|
|
}
|
|
|
|
.inline {
|
|
display: inline;
|
|
} |