Skip to content

Commit

Permalink
Update claim card status tag to accomodate long status names.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitemaeric committed Oct 10, 2024
1 parent 9946691 commit 526b00c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/components/_all.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
@import "organisation_list_item";
@import "phase_banner";
@import "primary_navigation";
@import "secondary_navigation";
@import "search_results";
@import "secondary_navigation";
@import "typography";
15 changes: 14 additions & 1 deletion app/assets/stylesheets/components/claim/card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@

.claim-card__header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
gap: govuk-spacing(2);
gap: govuk-spacing(1) govuk-spacing(2);

@include govuk-media-query($until: desktop) {
flex-direction: column;
}

.claim-card__header__name {
display: flex;
Expand Down Expand Up @@ -43,4 +48,12 @@
margin-bottom: govuk-spacing(1);
}
}

.govuk-tag {
@include govuk-font($size: 16);

@include govuk-media-query($until: desktop) {
margin-bottom: govuk-spacing(1);
}
}
}

0 comments on commit 526b00c

Please sign in to comment.