open-vault/website/pages/downloads/style.module.css
Zachary Shilton 88be341d21
Upgrade global styles (#12167)
* website: upgrade global-styles packages

* website: remove deprecated --site-max-width on community page

* website: replace code-block showWindowBar with showChrome

* website: replace old g-container with g-grid-container

* website: backfill missing type styles

* website: revert change to heading semantics

* website: fix mismatched border colour

* website: fix spacing issue

* website: revert accidental replacement

* website: clarify debt intention with comment

* website: fix missing search styles, remove cruft

* website: hide alert-banner on mobile

* website: bump to latest patched dependencies
2021-08-20 12:20:18 -04:00

42 lines
636 B
CSS

.root {
composes: .g-grid-container from global;
margin-top: 72px;
margin-bottom: 72px;
}
.logo {
width: 105px;
}
.releaseNote {
composes: .g-type-body from global;
text-align: center;
}
.merchandisingSlot {
width: 100%;
border: 1px solid var(--gray-5);
padding: 16px;
display: flex;
justify-content: center;
& .centerWrapper {
display: flex;
align-items: center;
& p {
margin: 0;
max-width: 400px;
margin-right: 26px;
}
@media (max-width: 800px) {
flex-direction: column;
& p {
text-align: center;
margin-bottom: 12px;
}
}
}
}