We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2ce544 + ab839a2 commit aa5a4deCopy full SHA for aa5a4de
DNN Platform/Skins/Aperture/src/scss/utilities/_dimension.scss
@@ -29,7 +29,19 @@ $sizes: (
29
@each $breakpoint, $min-width in $breakpoints {
30
@media (min-width: $min-width) {
31
.aperture-#{$property}-#{$breakpoint}-#{$key} {
32
- #{$property}: #{$value} !important;
+ @if ($property == 'w') {
33
+ width: $value !important;
34
+ } @else if($property == 'h') {
35
+ height: $value !important;
36
+ } @else if($property == 'min-w') {
37
+ min-width: $value !important;
38
+ } @else if($property == 'min-h') {
39
+ min-height: $value !important;
40
+ } @else if($property == 'max-w') {
41
+ max-width: $value !important;
42
+ } @else if($property == 'max-h') {
43
+ max-height: $value !important;
44
+ }
45
}
46
47
0 commit comments