55 lines
770 B
CSS
55 lines
770 B
CSS
.logo {
|
|
width: 105px;
|
|
}
|
|
|
|
.releaseCandidate {
|
|
background-color: var(--gray-6);
|
|
padding: 1rem;
|
|
border-radius: 3px;
|
|
margin: 24px 0;
|
|
|
|
& code {
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
& :first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
& :last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.merchandisingSlot {
|
|
width: 100%;
|
|
border: 1px solid var(--gray-6);
|
|
padding: 16px;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 58px;
|
|
|
|
& .centerWrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
& p {
|
|
margin: 0;
|
|
max-width: 490px;
|
|
margin-right: 26px;
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
flex-direction: column;
|
|
& p {
|
|
text-align: center;
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.legalNotice {
|
|
margin-bottom: 60px;
|
|
}
|