mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
7aaa6329b8
Summary: Fixes T5686. Test Plan: Viewed in iOS simulator and Chrome with various viewport sizes - looked good! Reviewers: chad, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T5686 Differential Revision: https://secure.phabricator.com/D10082
45 lines
824 B
CSS
45 lines
824 B
CSS
/**
|
|
* @provides aphront-request-failure-view-css
|
|
*/
|
|
|
|
.aphront-request-failure-view {
|
|
margin: 16px auto;
|
|
background: #eff2f7;
|
|
width: 600px;
|
|
}
|
|
|
|
.device .aphront-request-failure-view {
|
|
width: 90%;
|
|
}
|
|
|
|
.aphront-request-failure-view .aphront-request-failure-head {
|
|
padding: 1em 2em;
|
|
border-bottom: 1px solid #afb2b7;
|
|
background: #dfe2e7;
|
|
}
|
|
|
|
.aphront-request-failure-view .aphront-request-failure-head h1 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.aphront-request-failure-view .aphront-request-failure-body {
|
|
padding: 1em 2em 1.5em;
|
|
}
|
|
|
|
.aphront-request-failure-view .aphront-request-failure-body p {
|
|
margin: .5em 0;
|
|
}
|
|
|
|
.aphront-failure-continue {
|
|
margin-top: 1.5em;
|
|
text-align: right;
|
|
}
|
|
|
|
.aphront-failure-continue a.button {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.aphront-request-failure-view ul {
|
|
list-style: disc;
|
|
margin-left: 3em;
|
|
}
|