mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-24 18:25:41 +03:00
Revert back to 'X' instead of '<'
It can be confused with the browser back button. It doesn't function as back button as well
This commit is contained in:
parent
481340a72c
commit
9beee6cb37
2 changed files with 6 additions and 3 deletions
|
@ -91,7 +91,7 @@ a.mention span {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
.deck header h1 {
|
.deck header h1 {
|
||||||
margin: 0;
|
margin: 0 8px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -186,14 +186,17 @@ function StatusPage({ id }) {
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<header>
|
<header>
|
||||||
<div>
|
{/* <div>
|
||||||
<Link class="button plain deck-close" href={closeLink}>
|
<Link class="button plain deck-close" href={closeLink}>
|
||||||
<Icon icon="chevron-left" size="xl" />
|
<Icon icon="chevron-left" size="xl" />
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div> */}
|
||||||
<h1>Status</h1>
|
<h1>Status</h1>
|
||||||
<div class="header-side">
|
<div class="header-side">
|
||||||
<Loader hidden={uiState !== 'loading'} />
|
<Loader hidden={uiState !== 'loading'} />
|
||||||
|
<Link class="button plain deck-close" href={closeLink}>
|
||||||
|
<Icon icon="x" size="xl" />
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<ul class="timeline flat contextual">
|
<ul class="timeline flat contextual">
|
||||||
|
|
Loading…
Reference in a new issue