* 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
29 lines
418 B
CSS
29 lines
418 B
CSS
.root {
|
|
padding: 25px 0 17px 0;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
|
|
& :global(.g-grid-container) {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
& a {
|
|
color: black;
|
|
opacity: 0.5;
|
|
transition: opacity 0.25s ease;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin-right: 20px;
|
|
margin-bottom: 8px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|