vue-bulma / vue-admin

We are refactoring it, using the latest Vue and Bulma. WIP
9.43k stars 1.61k forks source link

rtl support #156

Open webineh opened 7 years ago

webineh commented 7 years ago

hello do vue admin support rtl ?

luventa commented 7 years ago

eh..sorry, what's the full name of rtl?

webineh commented 7 years ago

support right to left languages like persian , in rtl side menu in left change to right side

luventa commented 7 years ago

Sorry, vue admin does not support rtl yet. Will implement later. Thanks!

bouksou commented 7 years ago

@vahidalvandi i have a solution for you just install this with npm https://github.com/vkalinichev/postcss-rtl and add to your build/vue-loader.conf.js the following code :

  postcss: [
    require('autoprefixer')({
      browsers: ['last 3 versions']
    }),
    require('postcss-rtl')() --> add this line
  ]

and to your index.html

that's it enjoy.