mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
85b85529ad
Summary: Removes unused CSS, cleans up curtain spacing. Test Plan: Test maniphest, etc, in mobile, tablet, desktop Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15418
31 lines
454 B
CSS
31 lines
454 B
CSS
/**
|
|
* @provides phui-curtain-view-css
|
|
*/
|
|
|
|
.phui-curtain-panel {
|
|
padding: 16px 0;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.device .phui-curtain-panel {
|
|
padding: 8px 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.device-desktop .phui-curtain-panel {
|
|
border-top: 1px solid rgba({$alphablue}, .1);
|
|
}
|
|
|
|
.phui-curtain-panel-header {
|
|
padding: 0 0 4px;
|
|
color: {$bluetext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phui-curtain-panel-body {
|
|
padding: 4px 0 0;
|
|
}
|
|
|
|
.device .phui-curtain-panel-body {
|
|
padding: 0;
|
|
}
|