Skip to content

Commit

Permalink
feat: Splash page updates (#36)
Browse files Browse the repository at this point in the history
Fixes on splash page:
- logo artifacts
- mobile responsiveness
- feature image sizing

light mode:
<img width="1905" alt="Screenshot 2024-03-13 155502"
src="https://github.com/microsoft/retina/assets/157858178/e125a6cd-798b-4085-89e9-f597fa60f14d">


dark mode:
<img width="1903" alt="Screenshot 2024-03-13 155512"
src="https://github.com/microsoft/retina/assets/157858178/6e995690-063f-4c2f-a79b-44ea001004ed">
  • Loading branch information
spencermckee authored Mar 14, 2024
1 parent 89146fb commit 91de0eb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions site/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@
}
}

@media only screen and (max-width: 600px) {
.columns {
display: flex;
align-items: center;
word-break: break-word;
padding: 4rem 1.5rem;

}
.column2 {
flex-grow: 2;
font-size: 0.75rem;
}
}

.buttons {
display: flex;
align-items: center;
Expand All @@ -26,18 +40,20 @@
display: flex;
align-items: center;
padding: 4rem 1.5rem;
word-break: break-word
}

.column1 {
text-align: center;
flex: none;
width: 33.3333%;
font-weight: 600;
font-size: 3rem;
font-size: calc(1rem + 1.8vw);
}

.column2 {
flex-grow: 2;
font-size: 1.25rem;
font-size: calc(1rem + 0.3vw);
}

.paragraph1 {
Expand All @@ -46,5 +62,8 @@

.features {
display: block;
margin: 0 auto;
margin: 20px auto;
width: 100%;
max-width: 1226px;
height: auto;
}
Binary file modified site/static/img/favicon.ico
Binary file not shown.
Binary file modified site/static/img/retina-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 91de0eb

Please sign in to comment.