vaguerent/website/pages/404.module.css
Zachary Shilton 1382832b9d
Upgrade global styles (#12470)
* website: upgrade global-style dependencies

* website: use hideOnMobile for alert banner

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

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

* website: backfill missing heading styles

* website: remove duplicative not-found page folder

* website: use new download page for vmware utility

* website: replace fake vmware utility logo with plain text

* website: bump to downloads-page pre-release to prove out

* website: bump to product-downloads stable release

* website: bump to patched content component

* website: add comment on vmware download page config

* chore(website): use new interface on vmware downloads page
2021-08-27 15:28:49 -04:00

24 lines
450 B
CSS

.root {
composes: .g-grid-container from global;
display: flex;
flex-direction: column;
justify-content: center;
margin: 64px auto; /* this is being overridden at the request of the learn team */
max-width: 784px;
min-height: 50vh;
padding-inline: 32px;
text-align: center;
@media (--large) {
padding-inline: 24px;
}
& a {
color: var(--highlight-color);
}
}
.heading {
composes: g-type-display-3 from global;
}