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

29
resources/sass/vendor/_dropzone.scss vendored Normal file
View File

@@ -0,0 +1,29 @@
//
// Dropzone
//
// Overwrite/Extend styles
// --------------------------------------------------
.dropzone {
min-height: 200px;
background-color: $body-bg-light;
border: .125rem dashed $input-border-color;
border-radius: $border-radius-lg;
.dz-message {
margin: 4rem 0;
font-size: 1rem;
font-style: italic;
font-weight: $font-weight-bold;
color: $body-color;
}
&:hover {
background-color: $white;
border-color: $primary;
.dz-message {
color: $primary;
}
}
}