fix: skill picker media queries centering

This commit is contained in:
Adrien Marquès 2022-10-05 16:40:22 +02:00
parent e289eec8dd
commit eb01da57c3
Signed by: xdrm-brackets
GPG Key ID: D75243CA236D825E
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@
// width > 1800px : center the container // width > 1800px : center the container
@media screen and (min-width: 1800px) { @media screen and (min-width: 1800px) {
.container { .container {
left: calc( 100vw/2 - 1800px/2 ); left: calc( 100vw/2 - 1800px/2 - #{$page-margin} );
max-width: 1800px; max-width: 1800px;
} }
} }