This commit is contained in:
Kenneth Jannette
2024-01-12 16:42:02 -06:00
parent 59b7a61488
commit fc032da063
3 changed files with 133 additions and 60 deletions

View File

@@ -70,4 +70,33 @@ p {
/*** Media Queries **/
@media only screen and (max-width: 430px) {
.mobile-content-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 18px 2px 0px 2px;
padding: 2px 2px;
background-color: var(--background-blue);
border-radius: 18px;
}
.mobile-divider {
height: 8px;
width: 88%;
margin: 2px 0px 16px 0px;
padding: 6px 0px;
border-bottom: 1px solid var(--accent-orange-light);
}
.mobile-info-heading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 28px 6px 2px 6px;
text-align: justify;
font-size: 15px;
line-height: 21px;
}
}