Skip to content

Commit

Permalink
fixes #450; main padding in percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Jul 9, 2021
1 parent 238075b commit ab2737c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main/resources/public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body {
height: 100%;
}
main {
padding-bottom: 75px;
padding-bottom: 15%;
}
#header {
border-bottom-style: solid;
Expand Down Expand Up @@ -128,12 +128,16 @@ body {
}
}

@media (max-width:767px)
@media (max-width:900px)
{
body {
padding-bottom: 472px;
}

main {
padding-bottom: 50%;
}

#how-it-works img[alt="Self XDSD Screenshot"]{
display:none ;
}
Expand Down

0 comments on commit ab2737c

Please sign in to comment.