Recherche des tweets de réponse avec l'API Tweeter

This commit is contained in:
hugol
2024-11-17 13:55:25 +01:00
parent 3d386178bf
commit 8dc18553ec
1751 changed files with 379552 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
//
// Hero
// --------------------------------------------------
.hero {
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
min-height: 500px;
&.hero-sm {
min-height: 300px;
}
&.hero-lg {
min-height: 800px;
}
&-inner {
flex: 0 0 auto;
width: 100%;
}
&-meta {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem 0;
text-align: center;
}
}
.hero-static {
min-height: 100vh;
}