StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
578 B
22 lines
578 B
// --- BootstrapVue utility / helper classes ---
|
|
|
|
$bv-utility-classes-defined: false !default;
|
|
|
|
// Make sure to include these style definitions only once
|
|
@if $bv-utility-classes-defined == false {
|
|
$bv-utility-classes-defined: true;
|
|
|
|
// No focus outline helper (use sparingly)
|
|
.bv-no-focus-ring:focus {
|
|
outline: none;
|
|
}
|
|
|
|
// Create `.bv-d-<bp>-down-none` helper classes
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
@include media-breakpoint-down($breakpoint) {
|
|
.bv-d-#{$breakpoint}-down-none {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|