Commit d93890ce by PLN (Algolia)

fix(css): Proper landing title

parent 38870816
# Dependencies to Install
These packages need to be installed for the improved ParVagues landing:
```bash
npm install @react-icons/all-files
```
## New icons dependencies:
- **@react-icons/all-files**: For streaming platform icons
## Alternative approach (if size matters):
```bash
npm install react-icons
```
Then import specific icons only.
...@@ -3,6 +3,15 @@ ...@@ -3,6 +3,15 @@
min-height: 100vh; min-height: 100vh;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
padding-top: 2rem;
}
.heroTitle {
font-size: clamp(4rem, 12vw, 9rem);
font-weight: 800;
margin: 1.5rem;
padding: 0.5rem;
text-wrap: balance;
} }
.bgImage { .bgImage {
...@@ -25,7 +34,7 @@ ...@@ -25,7 +34,7 @@
} }
.heroContent { .heroContent {
padding: 0 1rem; padding: 2rem 1rem;
max-width: 1400px; max-width: 1400px;
margin: 0 auto; margin: 0 auto;
width: 100%; width: 100%;
...@@ -47,7 +56,9 @@ ...@@ -47,7 +56,9 @@
.heroTitle { .heroTitle {
font-size: clamp(4rem, 12vw, 9rem); font-size: clamp(4rem, 12vw, 9rem);
font-weight: 800; font-weight: 800;
margin-bottom: 1rem; margin-bottom: 1.5rem;
padding-top: 0.5em;
padding-bottom: 0.1em;
background: linear-gradient(45deg, #a855f7, #ec4899, #8b5cf6); background: linear-gradient(45deg, #a855f7, #ec4899, #8b5cf6);
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment