carhop__carhop-theme__DEV/resources/css/base/base.css
Antoine M a25a5273c3
All checks were successful
continuous-integration/drone/push Build is passing
STYLE Add overflow-x hidden to html and adjust body styles
2026-05-19 17:03:33 +02:00

41 lines
722 B
CSS

a {
text-decoration: none;
@apply text-primary;
}
html {
overflow-x: hidden;
}
body {
max-width: 100vw;
overflow-x: hidden;
}
main {
/* Causing issues with the article sidebar index sticky positioning */
/* overflow-x: hidden; */
/* overflow-y: clip; */
max-width: 100vw;
& > :last-child {
margin-bottom: 0px !important;
}
}
ol li {
@apply list-decimal;
list-style-position: inside;
&::marker {
@apply text-carhop-green-700 font-bold;
content: counter(list-item) ' • ';
}
}
.alignnormal {
max-width: var(--wp--style--global--content-size, 960px);
}
.align-extra-wide {
max-width: var(--wp--style--global--wide-size, 1280px);
}