Skip to content

Commit bb2aa25

Browse files
committed
removed sass and just using plain css
1 parent d6c9293 commit bb2aa25

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'smeevil:reactive-block-grid',
33
summary: 'Given a cursor and a template this will create a reactive responsive block grid based on isotope',
4-
version: '1.0.1',
4+
version: '1.0.2',
55
git: 'https://github.com/smeevil/responsive-block-grid.git'
66
});
77

@@ -13,15 +13,14 @@ Package.onUse(function(api) {
1313
1414
1515
'mquandalle:[email protected]',
16-
'fourseven:[email protected]',
1716
'isotope:[email protected]_1',
1817
1918
]
2019
);
2120
api.add_files([
2221
'reactive_block_grid.jade',
2322
'reactive_block_grid.coffee',
24-
'reactive_block_grid.sass'
23+
'reactive_block_grid.css'
2524
], 'client'
2625
);
2726
});

reactive_block_grid.css

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.reactiveBlockGridElementContainer{
2+
position: absolute;
3+
width: 0;
4+
height: 0;
5+
display: none;
6+
}

reactive_block_grid.sass

-5
This file was deleted.

0 commit comments

Comments
 (0)