mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
refactor(Intro): adjust styles
This commit is contained in:
parent
5acc32411d
commit
43c76b6a4b
2 changed files with 13 additions and 1 deletions
|
|
@ -381,7 +381,7 @@ const Intro = ({ queryParams }) => {
|
||||||
<div className={styles['label']}>Continue with Facebook</div>
|
<div className={styles['label']}>Continue with Facebook</div>
|
||||||
</Button>
|
</Button>
|
||||||
<Button className={classnames(styles['form-button'], styles['apple-button'])} onClick={loginWithApple}>
|
<Button className={classnames(styles['form-button'], styles['apple-button'])} onClick={loginWithApple}>
|
||||||
<Icon className={styles['icon']} name={'apple'} />
|
<Icon className={styles['icon']} name={'macos'} />
|
||||||
<div className={styles['label']}>Continue with Apple</div>
|
<div className={styles['label']}>Continue with Apple</div>
|
||||||
</Button>
|
</Button>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -175,15 +175,27 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 22rem;
|
width: 22rem;
|
||||||
margin-left: 2rem;
|
margin-left: 2rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
.facebook-button {
|
.facebook-button {
|
||||||
background: var(--color-facebook);
|
background: var(--color-facebook);
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
|
||||||
&:hover, &:focus {
|
&:hover, &:focus {
|
||||||
outline: var(--focus-outline-size) solid var(--color-facebook);
|
outline: var(--focus-outline-size) solid var(--color-facebook);
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.apple-button {
|
||||||
|
background: var(--color-x);
|
||||||
|
|
||||||
|
&:hover, &:focus {
|
||||||
|
outline: var(--focus-outline-size) solid var(--color-x);
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue