Skip to content

Commit

Permalink
Rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Sep 18, 2018
1 parent b7197fc commit 2aab873
Show file tree
Hide file tree
Showing 12 changed files with 134 additions and 52 deletions.
55 changes: 41 additions & 14 deletions dist/snack-helper.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/snack-helper.css.map

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion dist/snack-helper.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/snack-helper.min.css.map

Large diffs are not rendered by default.

55 changes: 41 additions & 14 deletions docs/css/snack-helper.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/_float.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// ----------------------------------------------
// Float
// ----------------------------------------------
.pull-left {
.float-left {
float: left !important;
}

.pull-right {
.float-right {
float: right !important;
}

.pull-none {
.float-none {
float: none !important;
}
2 changes: 1 addition & 1 deletion src/_typography.scss → src/_font.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ----------------------------------------------
// Typography
// Font
// ----------------------------------------------
// Font Weight
@for $counter from 1 through 9 {
Expand Down
2 changes: 1 addition & 1 deletion src/_gutter.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ----------------------------------------------
// Gutter
// ----------------------------------------------
.row.no-gutter,
.row.no-gutters,
.row.gutter-0 {
margin: 0 !important;
&>[class*="col-"] {
Expand Down
2 changes: 1 addition & 1 deletion src/_size.scss → src/_sizing.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ----------------------------------------------
// Size - Height & Width
// Sizing - Height & Width
// ----------------------------------------------
.h-full {
height: 100%
Expand Down
2 changes: 1 addition & 1 deletion src/_space.scss → src/_spacing.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ----------------------------------------------
// Space - Margin & Padding
// Spacing - Margin & Padding
// ----------------------------------------------
// margin
.m-auto {
Expand Down
27 changes: 27 additions & 0 deletions src/_text.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// ----------------------------------------------
// Text
// ----------------------------------------------
// text-align
.text-left {
text-align: left !important;
}

.text-center {
text-align: center !important;
}

.text-right {
text-align: right !important;
}

// text-overflow
.text-ellipsis {
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}

// uppercase
.text-uppercase {
text-transform: uppercase !important;
}
21 changes: 7 additions & 14 deletions src/helper.scss
Original file line number Diff line number Diff line change
@@ -1,22 +1,15 @@
/**
*
* snack-helper.css v1.0.0
*
* https://nzbin.github.io/snack-helper/
*
* Copyright (c) 2017 nzbin
*
* Released under the MIT license
*
*/
// -----------------------
// Snack-helper
// -----------------------

@import "variables";
@import "typography";
@import "font";
@import "text";
@import "alignment";
@import "float";
@import "gutter";
@import "space";
@import "size";
@import "spacing";
@import "sizing";
@import "border";
@import "radius";
@import "shadow";
Expand Down

0 comments on commit 2aab873

Please sign in to comment.