grafana/public/sass/utils/_widths.scss

33 lines
478 B
SCSS
Raw Normal View History

2017-12-19 09:22:41 -06:00
.max-width {
width: 100%;
}
.width-auto {
width: auto;
}
2016-02-20 07:48:10 -06:00
// widths
@for $i from 1 through 30 {
.width-#{$i} {
width: ($spacer * $i) !important;
2016-02-20 07:48:10 -06:00
}
}
@for $i from 1 through 30 {
.max-width-#{$i} {
max-width: ($spacer * $i) !important;
2016-02-20 07:48:10 -06:00
flex-grow: 1;
}
}
@for $i from 1 through 30 {
.min-width-#{$i} {
min-width: ($spacer * $i) !important;
}
}
@for $i from 1 through 30 {
.offset-width-#{$i} {
margin-left: ($spacer * $i) !important;
}
}