mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
c63d92be72
Summary: This was clobbered when we added calendar feed to profiles, not projects. Test Plan: Browse Project on desktop and mobile, re-check profile. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin, chad Differential Revision: https://secure.phabricator.com/D8617
49 lines
869 B
CSS
49 lines
869 B
CSS
/**
|
|
* @provides phabricator-profile-css
|
|
*/
|
|
|
|
.device-desktop .profile-feed,
|
|
.device-tablet .profile-feed {
|
|
padding: 0 16px 16px 0;
|
|
}
|
|
|
|
.device-phone .profile-feed {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.device-phone .phabricator-project-layout .profile-feed {
|
|
padding: 12px 8px;
|
|
}
|
|
|
|
.profile-feed .phabricator-action-header-title {
|
|
font-size: 16px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.profile-activity-view {
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.profile-activity-view .profile-calendar {
|
|
float: left;
|
|
margin: 0 16px;
|
|
}
|
|
|
|
.profile-activity-view .profile-feed {
|
|
margin-left: 332px;
|
|
}
|
|
|
|
.device-phone .profile-activity-view .profile-calendar {
|
|
float: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.device-phone .profile-activity-view .profile-feed {
|
|
float: none;
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.device-desktop .phabricator-project-layout .profile-feed,
|
|
.device-tablet .phabricator-project-layout .profile-feed {
|
|
padding: 16px;
|
|
}
|