mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-22 12:41:19 +01:00
34 lines
624 B
CSS
34 lines
624 B
CSS
|
/**
|
||
|
* @provides phui-two-column-view-css
|
||
|
*/
|
||
|
|
||
|
.phui-two-column-view {
|
||
|
display: table;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.phui-two-column-row {
|
||
|
display: table-row;
|
||
|
}
|
||
|
|
||
|
.device-desktop .phui-two-column-view .phui-main-column {
|
||
|
display: table-cell;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
.device-desktop .phui-two-column-view .phui-side-column {
|
||
|
width: 320px;
|
||
|
display: table-cell;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
.device-desktop .phui-two-column-view
|
||
|
.phui-main-column .phui-object-box:first-child {
|
||
|
margin: 0 16px 0 16px;
|
||
|
}
|
||
|
|
||
|
.device-desktop .phui-two-column-view
|
||
|
.phui-side-column .phui-object-box:first-child {
|
||
|
margin: 0 16px 16px 0;
|
||
|
}
|