Skip to content

Commit b546537

Browse files
author
λhmad λjmi
committed
Float helpers names becomes shorter
Gruntfile change the build task name
1 parent 836472f commit b546537

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = function(grunt){
88
watch: {
99
css: {
1010
files: ['*.scss'],
11-
tasks: ['buildcss']
11+
tasks: ['build']
1212
}
1313
},
1414
cssmin: {
@@ -27,6 +27,6 @@ module.exports = function(grunt){
2727
});
2828

2929
grunt.registerTask('default', ['buildcss']);
30-
grunt.registerTask('buildcss', ['sass', 'cssmin']);
30+
grunt.registerTask('build', ['sass', 'cssmin']);
3131

3232
};

helpers/_float.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Floats
22

3-
.float-left { float: left; }
4-
.float-right { float: right; }
3+
.left { float: left; }
4+
.right { float: right; }

helpers/_positions.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
.fixed { position: fixed; }
66
.relative { position: relative; }
77
.absolute { position: absolute; }
8+

0 commit comments

Comments
 (0)