Skip to content

Commit

Permalink
changes to splash and instr
Browse files Browse the repository at this point in the history
  • Loading branch information
suryabulusu committed Oct 23, 2023
1 parent 7be1163 commit 0822585
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions src/components/InstructionPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<h4 class="text-lg font-bold m-6">Test Paper Overview</h4>
<!-- Table -->
<table class="table-auto m-4">
<table class="table-auto mx-auto md:mx-0 m-4">
<!-- row 1 -->
<tr>
<th class="border-black border-1 text-left px-4 py-2">Test Name</th>
Expand Down Expand Up @@ -60,21 +60,21 @@
<li>The countdown timer in the top right corner of screen will display the remaining time available for you to complete the test. When the timer reaches zero, the test will end by itself. You will not be required to end or submit your test.</li>
<li>You can click on the <span class="inline-flex items-baseline"><BaseIcon name ='hamburger' class="place-self-center w-4 h-4"></BaseIcon></span> button on the top left corner of the page to expand the Question Palette.</li>
<li>The Question Palette will show the status of each question using one of the following symbols:
<div class="flex flex-wrap ml-7 mr-4 m-2">
<div class="flex items-center mb-2 mr-4">
<Success></Success>
<span class="ml-6 mr-6">You have answered the question</span>
</div>
<div class="flex items-center mb-2 mr-4">
<Error></Error>
<span class="ml-6 mr-6">You have not visited the question yet</span>
</div>
<div class="flex items-center mb-2 mr-4">
<Neutral></Neutral>
<span class="ml-6 mr-6">You have not answered the question</span>
</div>
<div class="flex flex-wrap mx-2 md:mx-4 my-2">
<div class="flex items-center my-2 md:mx-4">
<Success></Success>
<span class="ml-6 mr-6">You have answered the question</span>
</div>
</li>
<div class="flex items-center my-2 md:mx-4">
<Error></Error>
<span class="ml-6 mr-6">You have not visited the question yet</span>
</div>
<div class="flex items-center my-2 md:mx-4">
<Neutral></Neutral>
<span class="ml-6 mr-6">You have not answered the question</span>
</div>
</div>
</li>
<li>You can click on the <span class="inline-flex items-baseline"><BaseIcon name ='hamburger' class="place-self-center w-4 h-4"></BaseIcon></span> button again to collapse the Question Palette.</li>
</ol>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Splash.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
:maxQuestionsAllowedToAttempt="maxQuestionsAllowedToAttempt"
:quizTimeLimit="quizTimeLimit"
:questionSetStates = "questionSetStates"
class="xl:mr-20 xl:ml-10 lg:mr-24 lg:ml-24 md:mr-48 md:ml-48 sm:mr-60 sm:ml-60"
class="mx-4 md:mx-40"
></InstructionPage>

<!-- start button -->
Expand Down Expand Up @@ -181,7 +181,7 @@ export default defineComponent({
config.value = "Let's Start";
} else {
if (props.hasQuizEnded && !props.reviewAnswers) {
config.class = "text-sm md:text-sm text-primary text-white font-poppins-bold";
config.class = "text-sm md:text-sm text-white font-poppins-bold";
config.value = "You cannot review answers now. Please come back after test ends.";
if (props.sessionEndTimeText != "") {
config.value += ` (${props.sessionEndTimeText})`
Expand Down

0 comments on commit 0822585

Please sign in to comment.