We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c14860 commit 34de10aCopy full SHA for 34de10a
css/member.css
@@ -55,12 +55,15 @@
55
margin-bottom: 8px;
56
display: list-item;
57
position: relative;
58
- padding-right: 100px;
+ /* reserve extra space on the right for the date so text doesn't overlap */
59
+ padding-right: 160px;
60
}
61
62
.education-section li .content,
63
.professional-careers-section li .content {
- display: inline;
64
+ display: inline-block; /* behave like inline text but width controllable */
65
+ max-width: calc(100%); /* prevent overlap with right-aligned date */
66
+ vertical-align: top;
67
68
69
.education-section li .date,
0 commit comments