| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- //高度,两翼,空格相关样式
- @use "../define/wing-height.scss" as *;
- .height {
- @each $key, $size in $heights {
- &-#{''+$key} {
- height: $size;
- }
- }
- }
- .gap {
- @each $key, $size in $heights {
- &-#{''+$key} {
- gap: $size;
- }
- }
- }
- .row-gap {
- @each $key, $size in $heights {
- &-#{''+$key} {
- row-gap: $size;
- }
- }
- }
- .column-gap {
- @each $key, $size in $heights {
- &-#{''+$key} {
- column-gap: $size;
- }
- }
- }
- .wing {
- @each $key, $size in $wings {
- &-#{''+$key} {
- margin-left: $size;
- margin-right: $size;
- }
- }
- }
- .padding-wing {
- @each $key, $size in $wings {
- &-#{''+$key} {
- padding-left: $size;
- padding-right: $size;
- }
- }
- }
- .space {
- @each $key, $size in $space {
- &-#{''+$key} {
- margin-top: $size;
- margin-bottom: $size;
- }
- }
- }
- .h {
- @for $i from 0 through 20 {
- &-#{$i * 5} {
- height: $i * 5%;
- }
- }
- }
- .w {
- @for $i from 0 through 20 {
- &-#{$i * 5} {
- width: $i * 5%;
- }
- }
- }
|