feat(nimbus-logo): add responsive margin
This commit is contained in:
parent
6ba84c61d8
commit
5a050e3c1b
|
@ -10,8 +10,8 @@ const NimbusLogo = () => {
|
|||
style={{
|
||||
alignItems: 'center',
|
||||
justifyContent: 'flex-start',
|
||||
marginTop: '4.4rem',
|
||||
}}
|
||||
className="nimbus-logo"
|
||||
space={'$3'}
|
||||
>
|
||||
<NimbusLogoMark />
|
||||
|
|
|
@ -119,6 +119,10 @@ ul li {
|
|||
background: transparent;
|
||||
}
|
||||
|
||||
.nimbus-logo {
|
||||
margin-top: 4.4rem;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
color: #09101c;
|
||||
|
@ -144,3 +148,9 @@ ul li {
|
|||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.nimbus-logo {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue