Skip to content

Commit

Permalink
Merge pull request #6 from rarimo/fix/card-width
Browse files Browse the repository at this point in the history
fix text width
  • Loading branch information
WhiteNik16 authored Dec 15, 2023
2 parents e24a70d + a782523 commit d02ce6b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}

.home-identity-issuers__list-item {
padding: to-rem(48);
height: to-rem(220);
display: flex;
justify-content: center;
align-items: center;
Expand All @@ -43,6 +43,7 @@
box-shadow: var(--default-box-shadow);
width: calc((100% - var(--sum-of-padding-between-blocks)) / 4);
@include respond-to(medium) {
height: auto;
padding: to-rem(24);
width: calc((100% - var(--sum-of-padding-between-blocks-mobile)) / 2);
margin-top: to-rem(16);
Expand All @@ -54,7 +55,8 @@
color: var(--col-primary-black);
font-size: to-rem(20);
font-weight: 500;
white-space: nowrap;
text-align: center;

@include respond-to(medium) {
white-space: normal;
font-size: to-rem(16);
Expand Down

0 comments on commit d02ce6b

Please sign in to comment.