Skip to content

Commit 0ab3537

Browse files
committed
💄 Fix overflow on cards
1 parent 9189c41 commit 0ab3537

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/Card/card.module.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
@include border-radius(md);
66
@include layout(flex, column);
77
@include background(primary-70);
8+
@include visibility(hidden);
89

910
&.secondary {
1011
@include background(primary-60);
@@ -17,7 +18,7 @@
1718
.title {
1819
@include spacing(p-default);
1920
@include border(primary-50, bottom);
20-
display: block;
21+
@include visibility(block);
2122
}
2223

2324
.body {

0 commit comments

Comments
 (0)