Skip to content

Commit 2b0420e

Browse files
committed
Fix links CSS
1 parent 427df4f commit 2b0420e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/assets/css/common.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,8 @@ a.f-link,
332332
.field-submittype .section-wrap a {
333333
margin-right: 10px;
334334
color: inherit;
335-
border-bottom: 1px solid;
336-
white-space: pre-wrap;
335+
border-bottom: 1px dotted;
336+
word-break: break-word;
337337
}
338338

339339
a.f-link:hover,
@@ -440,6 +440,10 @@ p.description {
440440
padding-right: 4rem;
441441
}
442442

443+
p.description span {
444+
margin-right: 10px;
445+
}
446+
443447
/*f-radios (multiple-choice)*/
444448
ul.f-radios {
445449
margin: 0;

src/components/Question.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
</div>
5151
</div>
5252
<p v-if="question.description || question.descriptionLink" class="description">
53-
{{ question.description }}
53+
<span>{{ question.description }}</span>
5454
<a
5555
v-for="(link, index) in question.descriptionLink"
5656
class="f-link"

0 commit comments

Comments
 (0)