mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-22 00:01:04 -05:00
18 lines
306 B
CSS
18 lines
306 B
CSS
.learn-page-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@media screen, (max-width: 630px) {
|
|
.learn-page-wrapper {
|
|
padding: 0px 25px 0px 25px;
|
|
}
|
|
}
|
|
|
|
.learn-page-wrapper p {
|
|
margin-bottom: 0.75rem;
|
|
} |