custard 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f0ad9caafc1a9bc4a6084b69890427a2eab416c
4
- data.tar.gz: 3ce82606bad490b1c8754a47018954b195290741
3
+ metadata.gz: 96df0e5bad78b68e25a818d55ac8e2926704dde0
4
+ data.tar.gz: 248da5a8a8c9378e203110a166e75d8cf60fa424
5
5
  SHA512:
6
- metadata.gz: 2cc0e6554cbad58bb6f087f20fbf3c6d5e61defa4ae45cdbceafcf047f738b9affe8f22a0eba844479b76513255c86c612d8579c8144d63ed001053f55da3ac7
7
- data.tar.gz: 2c1865d4ee700b00c9f5f17945487adf4b687bdb912b2886692774cc667797b9c8a34c305981bb4694ae6fd12594389b4dae2d28ac7f82f9350ec9bec5ec4bb8
6
+ metadata.gz: 3b7df2afcec856b4ffcf20e5f70e41df7ec8ed716427947b53487452dacedeb55196e3de224489302a61efbced8c676d56728fb0a95ad46380e3f17dfca96deb
7
+ data.tar.gz: 54772efaeb74b3acab0c3fdcb0aef3aa247718ec5d8a17d9008b6bfdf103a67297998cf4e94a685b47c5db8bbdd3ae9160bb45442268de5ae336a0fd14d871f2
data/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "custard",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "authors": [
5
5
  "Kei Goto <gem@zeneffect.co.jp>"
6
6
  ],
@@ -1,3 +1,3 @@
1
1
  module Custard
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -22,55 +22,6 @@
22
22
 
23
23
  .#{$ds}-flex {
24
24
  @include display-flex;
25
-
26
- &.centering {
27
- @include justify-content(center);
28
- @include align-items(center);
29
- }
30
-
31
- &.direct-column {
32
- @include flex-direction(column);
33
- }
34
-
35
- &.just-center {
36
- @include justify-content(center);
37
- }
38
-
39
- &.just-space {
40
- @include justify-content(space-between);
41
- }
42
-
43
- &.just-start {
44
- @include justify-content(flex-start);
45
- }
46
-
47
- &.just-end {
48
- @include justify-content(flex-end);
49
- }
50
-
51
- &.align-center {
52
- @include align-items(center);
53
- }
54
-
55
- &.align-start {
56
- @include align-items(flex-start);
57
- }
58
-
59
- &.align-end {
60
- @include align-items(flex-end);
61
- }
62
-
63
- &.flex-wrap {
64
- @include flex-wrap(wrap);
65
- }
66
-
67
- &.flex-nowrap {
68
- @include flex-wrap(nowrap);
69
- }
70
-
71
- &.flex-reverse {
72
- @include flex-wrap(wrap-reverse);
73
- }
74
25
  }
75
26
 
76
27
  $justify-list:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: custard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kei Goto