mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
33 lines
532 B
SCSS
33 lines
532 B
SCSS
.max-width {
|
|
width: 100%;
|
|
}
|
|
.width-auto {
|
|
width: auto;
|
|
}
|
|
|
|
// widths
|
|
@for $i from 1 through 30 {
|
|
.width-#{$i} {
|
|
width: ($spacer * $i) - $gf-form-margin !important;
|
|
}
|
|
}
|
|
|
|
@for $i from 1 through 30 {
|
|
.max-width-#{$i} {
|
|
max-width: ($spacer * $i) - $gf-form-margin !important;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
@for $i from 1 through 30 {
|
|
.min-width-#{$i} {
|
|
min-width: ($spacer * $i) - $gf-form-margin !important;
|
|
}
|
|
}
|
|
|
|
@for $i from 1 through 30 {
|
|
.offset-width-#{$i} {
|
|
margin-left: ($spacer * $i) !important;
|
|
}
|
|
}
|