1
0

Changed the implementation of changing the text font size when there is no thumbnail.

(cherry picked from commit 3cd5432034)
This commit is contained in:
DanGastardelli
2024-10-22 10:37:41 -03:00
committed by github-actions[bot]
parent be2bf9897a
commit 2eed8f13d0
2 changed files with 8 additions and 1 deletions

View File

@@ -34,7 +34,6 @@ img {
justify-content: center;
align-items: center;
text-align: center;
font-size: 14px;
}
}
}

View File

@@ -238,6 +238,14 @@ ds-dynamic-form-control-container.d-none {
.thumb-font-3 {
.thumbnail-placeholder {
@media screen and (max-width: map-get($grid-breakpoints, sm)) {
font-size: 0.4rem;
padding: 0.1rem;
}
@media screen and (min-width: map-get($grid-breakpoints, sm)) and (max-width: map-get($grid-breakpoints, lg)) {
font-size: 0.875rem;
padding: 0.1rem;
}
font-size: 1.25rem;
padding: 0.5rem;
}