Skip to content

Commit

Permalink
Add home page mobile compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
besser435 committed Oct 20, 2023
1 parent b693a57 commit 9549726
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions website/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ p {

/* Small screens compatibility changes*/
@media (max-width: 950px) {
/*Logo and navbar */
.logo-slogan h1 {
font-size: 36px;
}
Expand All @@ -515,11 +516,42 @@ p {
align-items: center;
}


/* Box template */
.box {
max-width: 100%;
}


/* Players page */
.container-player {
max-width: 100%;
}


/* Home page */
.who-we-are {
height: auto;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}

.who-we-are .person {
margin: 10px 0;
}

.about {
max-width: 100%;
}

.services {
grid-template-columns: 1fr;
gap: 20px;
}

.services-box {
width: 100%;
}
}

0 comments on commit 9549726

Please sign in to comment.