We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5fea2 commit bd19df5Copy full SHA for bd19df5
app/pods/components/question-container/template.hbs
@@ -1,4 +1,4 @@
1
-<div class="font-mds mb-4">Question {{this.index}}</div>
+<div class="font-mds mb-4 question-parent">Question {{this.index}} <span class="question-child">{{question.id}}</span></div>
2
<div class="font-sm bold word-wrap">
3
{{markdown-to-html question.description}}
4
</div>
app/styles/app.scss
@@ -268,6 +268,14 @@ body{
268
width: 100vw;
269
}
270
271
+.question-child {
272
+ display: none;
273
+}
274
+
275
+.question-parent:hover .question-child {
276
+ display: inline-block;
277
278
279
// Animations
280
281
@keyframes dots {
0 commit comments