mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
chore(stylelint): remove sass-lint/scss-lint in favor of stylelint
- remove scss-lint and sass-lint - add stylelint and stylelint-order packages and configuration - update all *.scss files to new syntax fixes #14805
This commit is contained in:
committed by
Cam Wiegert
parent
771c47f109
commit
7a8d5f68d2
@ -9,13 +9,13 @@
|
||||
// ---------------------------------------------------------------------------------
|
||||
|
||||
@mixin make-grid-widths($widths: $grid-widths, $breakpoints: $screen-breakpoints) {
|
||||
max-width: 100%;
|
||||
|
||||
@each $breakpoint, $width in $widths {
|
||||
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
||||
width: $width;
|
||||
}
|
||||
}
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
||||
@ -26,6 +26,7 @@
|
||||
@each $breakpoint in map-keys($paddings) {
|
||||
@include media-breakpoint-up($breakpoint) {
|
||||
$padding: map-get($paddings, $breakpoint);
|
||||
|
||||
@include padding($padding);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user