mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
f2cec9f973
Summary: Wanted to pull this out in case we don't use it in Maniphest, still useful perhaps in the future. Creates a sidebar that wraps when on mobile. Test Plan: Tested UIExample Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5321
26 lines
427 B
CSS
26 lines
427 B
CSS
/**
|
|
* @provides aphront-two-column-view-css
|
|
*/
|
|
|
|
.aphront-two-column {
|
|
position: relative;
|
|
}
|
|
|
|
.device-desktop .aphront-two-column.aphront-two-column-padded {
|
|
margin: 20px;
|
|
}
|
|
|
|
.device-desktop .aphront-main-column {
|
|
margin-right: 300px;
|
|
}
|
|
|
|
.device-desktop .aphront-side-column {
|
|
width: 300px;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.device-phone .aphront-two-column.aphront-two-column-padded {
|
|
margin: 10px;
|
|
}
|