refactor: change background color of loaders

This commit is contained in:
Valentin Kaelin 2020-01-01 17:00:23 +01:00
parent 60f1eccaf8
commit 585066c54e
2 changed files with 5 additions and 4 deletions

View file

@ -23,7 +23,7 @@
</div> </div>
<div v-else class="mt-3 flex text-center"> <div v-else class="mt-3 flex text-center">
<div class="mt-4 w-3/12"> <div class="mt-4 w-3/12">
<div class="bg-blue-800 rounded-lg" style="width: 300px; height: 339px;"> <div class="bg-blue-850 rounded-lg" style="width: 300px; height: 339px;">
<content-loader <content-loader
:height="339" :height="339"
:width="300" :width="300"
@ -63,7 +63,7 @@
<rect x="246" y="308" rx="3" ry="3" width="42" height="16" /> <rect x="246" y="308" rx="3" ry="3" width="42" height="16" />
</content-loader> </content-loader>
</div> </div>
<div class="mt-4 bg-blue-800 rounded-lg" style="width: 300px; height: 828px;"> <div class="mt-4 bg-blue-850 rounded-lg" style="width: 300px; height: 828px;">
<content-loader <content-loader
:height="828" :height="828"
:width="300" :width="300"
@ -155,7 +155,7 @@
</content-loader> </content-loader>
</div> </div>
<div class="mt-4 bg-blue-800 rounded-lg" style="width: 300px; height: 384px;"> <div class="mt-4 bg-blue-850 rounded-lg" style="width: 300px; height: 384px;">
<content-loader <content-loader
:height="384" :height="384"
:width="300" :width="300"
@ -213,7 +213,7 @@
<div <div
v-for="index in 10" v-for="index in 10"
:key="index" :key="index"
class="mt-4 ml-4 bg-blue-800 rounded-lg" class="mt-4 ml-4 bg-blue-850 rounded-lg"
style="width: 884px; height: 144px;" style="width: 884px; height: 144px;"
> >
<content-loader <content-loader

View file

@ -92,6 +92,7 @@ module.exports = {
700: '#2b6cb0', 700: '#2b6cb0',
760: '#2C5C94', 760: '#2C5C94',
800: '#2c5282', 800: '#2c5282',
850: '#2B4B74',
900: '#2a4365', 900: '#2a4365',
1000: '#17314f' 1000: '#17314f'
}, },