Skip to content

Commit

Permalink
Merge pull request #1907 from prachi00/feat-preloader-overflow
Browse files Browse the repository at this point in the history
#1902 fix preloader height issue
  • Loading branch information
yangwao committed Jan 18, 2022
2 parents ead111d + c25cb01 commit b73256c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/shared/Loader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<br />
<div class="pl-4 pr-4">
<b-icon size="is-large" icon="lightbulb" class="funfact-icon" />
<div>{{ randomFunFactQuestion }}</div>
<div class="question">{{ randomFunFactQuestion }}</div>
</div>
</div>
<figure>
Expand Down Expand Up @@ -86,7 +86,6 @@ export default class Loader extends Vue {
background: #1a1a1ae0;
margin: 0rem 1rem;
width: 450px;
height: 400px;
border: 2px solid $primary-light;
box-shadow: 13px 14px $primary-dark-transparent;
}
Expand All @@ -106,6 +105,9 @@ export default class Loader extends Vue {
.funfact-icon {
color: $primary-light;
}
.question {
min-height: 70px;
}
.loading-text {
position: relative;
max-width: 200px;
Expand Down

0 comments on commit b73256c

Please sign in to comment.