1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00

styling and set gulp watcher for js

This commit is contained in:
devfake 2015-06-22 09:28:08 +02:00
parent 3409de9f32
commit b03d9dcbb1
4 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,5 @@
.icon-load {
background: url(../img/load.gif) #ca5a07 no-repeat;
background: url(../img/load.gif) no-repeat;
width: 16px;
height: 16px;
float: right;

View File

@ -4,7 +4,7 @@ body.landing {
}
.icon-guest-load {
background: url(../img/guest-load.gif) #ca5a07 no-repeat;
background: url(../img/guest-load.gif) no-repeat;
width: 16px;
height: 16px;
float: right;

View File

@ -41,4 +41,8 @@ nav {
.sub-nav {
float: right;
a {
padding: 12px;
}
}

View File

@ -10,4 +10,6 @@ elixir.config.publicDir = '../public/';
elixir(function(mix) {
mix.sass('app.scss');
mix.browserify('../../app/app.js');
mix.task('browserify', '../../app/**/*.js');
});