You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
323 B
25 lines
323 B
5 years ago
|
<template>
|
||
|
<div id='question_box'>
|
||
|
{{ q }}
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
5 years ago
|
name: 'Question',
|
||
5 years ago
|
props: {
|
||
|
q: String
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
#question_box {
|
||
5 years ago
|
--text-spacing: 0.75em;
|
||
|
|
||
5 years ago
|
font-style: italic;
|
||
5 years ago
|
margin-top: var(--text-spacing);
|
||
|
margin-bottom: var(--text-spacing);
|
||
5 years ago
|
}
|
||
|
</style>
|