minolith 0.0.6 → 0.0.7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minolith",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "design system by minominolyly",
5
5
  "main": "src/minolith.scss",
6
6
  "scripts": {
@@ -134,6 +134,36 @@ $offset: 0.02px;
134
134
  display: none !important;
135
135
  }
136
136
  }
137
+ &.is-medium-or-less {
138
+ @include screen("large") {
139
+ display: none !important;
140
+ }
141
+ @include screen("xlarge") {
142
+ display: none !important;
143
+ }
144
+ }
145
+ &.is-medium {
146
+ @include screen("xsmall") {
147
+ display: none !important;
148
+ }
149
+ @include screen("small") {
150
+ display: none !important;
151
+ }
152
+ @include screen("large") {
153
+ display: none !important;
154
+ }
155
+ @include screen("xlarge") {
156
+ display: none !important;
157
+ }
158
+ }
159
+ &.is-medium-or-more {
160
+ @include screen("small") {
161
+ display: none !important;
162
+ }
163
+ @include screen("xsmall") {
164
+ display: none !important;
165
+ }
166
+ }
137
167
  &.is-large-or-less {
138
168
  @include screen("large") {
139
169
  display: none !important;