Skip to content

Commit

Permalink
Polish the desktop app view
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Sep 29, 2024
1 parent b7b7de9 commit ef4626b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf

[*.{js,json,ts,tsx}]
[*.{js,json,ts,tsx,css}]
indent_style = space
indent_size = 2

Expand Down
Binary file modified public/desktop-app/desktop-app-loading-v2.webp
Binary file not shown.
Binary file removed public/desktop-app/desktop-app-main-500x281.webp
Binary file not shown.
Binary file removed public/desktop-app/desktop-app-main.webp
Binary file not shown.
13 changes: 8 additions & 5 deletions screens/desktop-app/desktop-app.module.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
.desktop-app-image-container {
max-width: 800px;
height: 550px;
position: relative;
margin: 0 auto;
height: 200px;

@media (min-width: 48em) {
height: 500px;
}
}

.desktop-app-loading-image {
Expand All @@ -11,17 +15,16 @@
position: absolute;
top: 0;
left: 0;
object-fit: cover;
object-fit: contain;
}

.desktop-app-image {
width: 65%;
height: auto;
object-fit: contain;
position: absolute;
top: 75%;
left: 60%;
transform: translate(0%, -50%);
top: 40%;
left: 50%;
z-index: 1;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
border-radius: 8px;
Expand Down

0 comments on commit ef4626b

Please sign in to comment.