Skip to content

Commit

Permalink
Merge pull request #690 from FitzwilliamMuseum/hotfix/14432-events-date
Browse files Browse the repository at this point in the history
related events date add
  • Loading branch information
ostafinskim authored Jun 18, 2024
2 parents 2ba8361 + 7b9da05 commit 16a1ad1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"/js/app.js": "/js/app.js?id=186fc5ec23f2fa6f870cee9d2ef7b85f",
"/css/app.css": "/css/app.css?id=0016f68f791a7fcc24eed4d216c98602",
"/css/app.css": "/css/app.css?id=8e4ead9c25bbfdddf46ef0293a4e3757",
"/css/fitzwilliam.css": "/css/fitzwilliam.css?id=1f635823422a215addb50a50ca5a2242"
}
7 changes: 7 additions & 0 deletions resources/sass/exhibition/_related-events.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,20 @@
width: 100%;
& .cta-title {
font-size: 20px;
font-weight: 600;
}

& .cta-copy {
font-size: 18px;
font-weight: 400;
margin-bottom: 8px;
}

& .cta-title-date {
font-size: 18px;
font-weight: 600;
}

& .cta-btn {
font-size: 16px;
padding: 12.5px 24px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
@if(!empty($event['heading']))
<h4 class="cta-title">{{ $event['heading'] }}</h4>
@endif
@if(!empty($event['event_date']))
<h5 class="cta-title-date">{{ $event['event_date'] }}</h5>
@endif
@if(!empty($event['excerpt']))
<p class="cta-copy">
{{ $event['excerpt'] }}
Expand Down

0 comments on commit 16a1ad1

Please sign in to comment.