gitlab-org--gitlab-foss/app/assets/stylesheets/utilities.scss
Ezekiel Kigbo 2c39da05e7 Async import custom stage form components
Imports the files needed for the custom
stage form and adds the EE specific css.

Added stub addStageMixin
2019-09-10 15:29:06 +00:00

23 lines
560 B
SCSS

@each $variant, $range in $color-ranges {
@each $suffix, $color in $range {
#{'.bg-#{$variant}-#{$suffix}'} {
background-color: $color;
}
#{'.text-#{$variant}-#{$suffix}'} {
color: $color;
}
}
}
@each $index, $size in $type-scale {
#{'.text-#{$index}'} {
font-size: $size;
}
}
.border-width-1px { border-width: 1px; }
.border-style-dashed { border-style: dashed; }
.border-style-solid { border-style: solid; }
.border-color-blue-300 { border-color: $blue-300; }
.border-color-default { border-color: $border-color; }