Skip to content

Commit

Permalink
feat: improve loading page
Browse files Browse the repository at this point in the history
  • Loading branch information
LaercioSR committed Oct 16, 2024
1 parent e8b2222 commit bbc0665
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint",
"github.vscode-github-actions"
"github.vscode-github-actions",
"clinyong.vscode-css-modules"
]
}
4 changes: 2 additions & 2 deletions src/app/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/app/components/BuyMeACoffee/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function BuyMeACoffee() {
href={BUY_ME_A_COFFEE_LINK}
target="_blank"
rel="noreferrer"
aria-label="Buy me a coffee"
>
<Typography variant="h4">{t("components.buyMeACoffee.label")}</Typography>
<CoffeeSvg className={styles["buy_me_a_coffee-icon"]} />
Expand Down
1 change: 1 addition & 0 deletions src/app/components/PresentationCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export default function PresentationCard({
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerPolicy="strict-origin-when-cross-origin"
allowFullScreen
loading="lazy"
></iframe>
<div className={styles["presentation-info"]}>
<div className={styles["presentation-info-header"]}>
Expand Down
8 changes: 5 additions & 3 deletions src/app/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,21 @@
justify-content: center;
align-items: center;
flex-direction: column;
padding: 1rem 2rem;
padding: 0 2rem;

@media (min-width: 768px) {
padding: 1.5rem 10rem;
padding: 0 10rem;
}
}

.home-intro_section-logo {
filter: drop-shadow(4px 8px 32px rgba(0, 0, 0, 0.25));
width: auto;
height: 10rem;
}

.home-intro_section-title {
margin-top: 2rem;
margin-top: 1rem;
display: flex;
justify-content: center;
align-items: center;
Expand Down

0 comments on commit bbc0665

Please sign in to comment.