grafana/public/sass/utils/_widths.scss

26 lines
415 B
SCSS
Raw Normal View History

2016-02-20 07:48:10 -06:00
.max-width { width: 100%; }
.width-auto { width: auto; }
// widths
@for $i from 1 through 30 {
.width-#{$i} {
2016-03-21 08:08:18 -05:00
width: ($spacer * $i) - $gf-form-margin !important;
2016-02-20 07:48:10 -06:00
}
}
@for $i from 1 through 30 {
.max-width-#{$i} {
2016-03-21 08:08:18 -05:00
max-width: ($spacer * $i) - $gf-form-margin !important;
2016-02-20 07:48:10 -06:00
flex-grow: 1;
}
}
@for $i from 1 through 30 {
.offset-width-#{$i} {
margin-left: ($spacer * $i) !important;
}
}