mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-30 23:32:38 +00:00
Add rtl option to loading
This commit is contained in:
parent
2fc07a89b1
commit
f65b2b80e1
@ -91,7 +91,7 @@ export default {
|
|||||||
.progress {
|
.progress {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
left: 0px;
|
left: <%= loading.rtl === true ? 'auto' : '0px' %>;
|
||||||
right: 0px;
|
right: 0px;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
width: 0%;
|
width: 0%;
|
||||||
|
@ -231,7 +231,8 @@ Options.defaults = {
|
|||||||
color: 'black',
|
color: 'black',
|
||||||
failedColor: 'red',
|
failedColor: 'red',
|
||||||
height: '2px',
|
height: '2px',
|
||||||
duration: 5000
|
duration: 5000,
|
||||||
|
rtl: false
|
||||||
},
|
},
|
||||||
loadingIndicator: {},
|
loadingIndicator: {},
|
||||||
transition: {
|
transition: {
|
||||||
|
Loading…
Reference in New Issue
Block a user