2016-02-22 14:49:16 -05:00
|
|
|
.appearance-logo-preview {
|
|
|
|
max-width: 400px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.appearance-light-logo-preview {
|
2016-12-12 17:26:21 -05:00
|
|
|
background-color: $gray-light;
|
2016-02-22 14:49:16 -05:00
|
|
|
max-width: 72px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2017-09-22 04:39:47 -04:00
|
|
|
|
|
|
|
.svg-content {
|
|
|
|
text-align: center;
|
|
|
|
padding: $gl-padding;
|
|
|
|
|
|
|
|
svg,
|
|
|
|
img {
|
|
|
|
max-width: 425px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-12-07 10:03:32 -05:00
|
|
|
|
2018-01-23 06:29:00 -05:00
|
|
|
$image-widths: 250 306 394 430;
|
2017-12-20 05:24:13 -05:00
|
|
|
@each $width in $image-widths {
|
|
|
|
&.svg-#{$width} {
|
|
|
|
img,
|
|
|
|
svg {
|
|
|
|
width: #{$width + 'px'};
|
|
|
|
}
|
2017-12-07 10:03:32 -05:00
|
|
|
}
|
|
|
|
}
|
2017-09-22 04:39:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin svg-size($size) {
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
2017-11-21 15:39:26 -05:00
|
|
|
fill: currentColor;
|
|
|
|
|
2017-09-28 09:43:52 -04:00
|
|
|
&.s8 { @include svg-size(8px); }
|
2017-10-06 18:37:26 -04:00
|
|
|
&.s12 { @include svg-size(12px); }
|
2017-09-22 04:39:47 -04:00
|
|
|
&.s16 { @include svg-size(16px); }
|
2017-09-28 09:43:52 -04:00
|
|
|
&.s18 { @include svg-size(18px); }
|
2017-09-22 04:39:47 -04:00
|
|
|
&.s24 { @include svg-size(24px); }
|
|
|
|
&.s32 { @include svg-size(32px); }
|
|
|
|
&.s48 { @include svg-size(48px); }
|
|
|
|
&.s72 { @include svg-size(72px); }
|
|
|
|
}
|