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,48 @@
//
// Dropdown
// --------------------------------------------------
.dropdown-menu {
padding-right: .5rem;
padding-left: .5rem;
box-shadow: $dropdown-box-shadow;
&.dropdown-menu-md {
min-width: 200px;
}
&.dropdown-menu-lg,
&.dropdown-menu-xl,
&.dropdown-menu-xxl {
min-width: 300px;
}
&.dropdown-menu-mega {
transition: transform .3s ease-out, opacity .3s ease-out;
opacity: 0;
display: block;
visibility: hidden;
transform: translateY(10px) scale(.98);
transform-origin: top left;
&.show {
opacity: 1;
visibility: visible;
}
}
@include media-breakpoint-up(xl) {
&.dropdown-menu-xl {
min-width: 450px;
}
&.dropdown-menu-xxl {
min-width: 600px;
}
}
}
.dropdown-item {
margin-bottom: .25rem;
border-radius: $border-radius;
}