Skip to content
Snippets Groups Projects
Commit aaf354f4 authored by xaralis's avatar xaralis
Browse files

Fix overflow: hidden bug in candidate-table-row

parent 7d91bd97
No related branches found
No related tags found
No related merge requests found
...@@ -33,17 +33,18 @@ ...@@ -33,17 +33,18 @@
} }
.candidate-table-row__name { .candidate-table-row__name {
@apply pl-6 pr-4; @apply pl-6 pr-4 py-1;
grid-area: name; grid-area: name;
} }
.candidate-table-row__bio { .candidate-table-row__bio {
/* py-1 here to avoid overflow: hidden cutting Č Ř characters etc. */
@apply truncate py-1 pl-6 pr-4; @apply truncate py-1 pl-6 pr-4;
grid-area: bio; grid-area: bio;
} }
.candidate-table-row__affiliation { .candidate-table-row__affiliation {
@apply flex items-center justify-start whitespace-no-wrap pl-6 pr-4; @apply flex items-center justify-start whitespace-no-wrap py-1 pl-6 pr-4;
grid-area: affiliation; grid-area: affiliation;
} }
...@@ -68,7 +69,7 @@ ...@@ -68,7 +69,7 @@
} }
.candidate-table-row__bio { .candidate-table-row__bio {
@apply border-l border-grey-125 py-0 px-8; @apply border-l border-grey-125 px-8;
} }
.candidate-table-row__affiliation { .candidate-table-row__affiliation {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment