Skip to content

Commit

Permalink
DOCS: landing page css fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SlicedSilver committed Sep 11, 2023
1 parent ef47716 commit af03036
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

.SquareButton[data-primary]:hover {
background-color: var(--cta-button-primary-background-hover);
color: #ffffff;
}

.SquareButton[data-primary]:active {
Expand Down
10 changes: 8 additions & 2 deletions website/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,8 @@
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: flex;
flex-direction: column;
margin: 0;
margin: 0px;
max-width: 1920px;
margin-inline: auto;

/* Don't use this because we want to have the chart reach the viewport edge for certain breakpoints */
/* padding-inline: var(--container-padding); */
Expand All @@ -234,3 +233,10 @@
/* ! Fix for older versions of Safari which had a bug with css variables being used for -inline / -block */
padding: var(--vertical-container-padding) 0px;
}

@media (min-width: 1920px) {
.RootContainer {
margin-left: auto;
margin-right: auto;
}
}

0 comments on commit af03036

Please sign in to comment.