Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: layout and link color for BandiInEvidence #496

Merged
merged 5 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

### Fix

- Sistemato il layout del blocco elenco per i Bandi
- Sistemato il layout del template Galliery a griglia per il blocco elenco, le immagini più piccole ora sono correttamente contenute dentro il loro riquadro e il titolo non fuoriesce più
- Sistemati problemi negli stili per i sottositi
- Risolto un problema di visualizzazione degli argomenti indicati come altri argomenti nel blocco Argomenti quando il loro numero è esiguo
Expand Down
16 changes: 9 additions & 7 deletions src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@
grid-row: 1;
}

.card-body {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 2.5rem;
padding-bottom: 0rem;
.listing-item {
align-items: normal;
.card-body {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 2.5rem;
padding-bottom: 0rem;
}
}
}

Expand Down Expand Up @@ -122,7 +125,6 @@
@media (max-width: #{map-get($grid-breakpoints, sm)}) {
display: flex;
align-items: center;
color: $analogue-1-a7;
font-size: 0.77778rem;
font-weight: bold;
letter-spacing: 0.9px;
Expand Down
Loading