Skip to content

Commit 38e1e4b

Browse files
authored
Merge pull request #2 from benchmarkstudios/master
Merge current barebones
2 parents aa1c8b4 + 71df2f7 commit 38e1e4b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# barebones
22

3-
A lightweight and skeletal WordPress boilerplate theme for HTML5 and beyond. There's lots of these out there but most themes include lots of bloat and files which you might not necessarily need, so we thought we would create my own which is great as a starting point with powerful features to encourage rapid development for most projects.
3+
A lightweight and skeletal WordPress boilerplate theme for HTML5 and beyond. There's lots of these out there but most themes include lots of bloat and files which you might not necessarily need, so we thought we would create our own which is great as a starting point with powerful features to encourage rapid development for most projects.
44

55
## Features
66

assets/sass/config/_variables.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ $base-spacing-unit: ($base-font-size * $base-line-height) * 1px;
2929
* Breakpoints
3030
*/
3131

32-
$breakpoint-sm: 767px;
33-
$breakpoint-md: 992px;
3432
$breakpoint-lg: 1200px;
33+
$breakpoint-md: 768px;
34+
$breakpoint-sm: 480px;
3535

3636
$breakpoints: (
3737
'lg' '(min-width: ' + $breakpoint-lg + ')',
3838
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')',
39-
'sm' '(min-width: ' + ($breakpoint-sm + 1) + ') and (max-width:' + ($breakpoint-md - 1) + ')',
39+
'sm' '(max-width:' + ($breakpoint-md - 1) + ')',
4040
'xs' '(max-width: ' + $breakpoint-sm + ')'
4141
);
4242

@@ -54,4 +54,4 @@ $grid-gutter: $base-spacing-unit;
5454
* Components
5555
*/
5656

57-
$border-radius: 3px;
57+
$border-radius: 3px;

assets/sass/vendor/simple-grid

0 commit comments

Comments
 (0)