This commit is contained in:
s-lnk
2026-04-30 21:58:39 +03:00
commit aabe5fe2b7
2923 changed files with 366740 additions and 0 deletions
@@ -0,0 +1,65 @@
//
// Progress
//
.progress-wrapper {
position: relative;
padding-top: 1.5rem;
.progress {
margin-bottom: $spacer;
}
}
.progress-inverse {
background-color: inverse($progress-bg);
}
.progress-heading {
font-size: $font-size-sm;
font-weight: $font-weight-bold;
margin: 0 0 2px;
padding: 0;
}
.progress-text {
margin-bottom: 0;
}
// Sizing
.progress-lg {
height: 1rem;
}
.progress-md {
height: .75rem;
}
.progress-sm {
height: .375rem;
}
.progress-xs {
height: .125rem;
}
// Progress prepend icons
.progress-group {
position: relative
}
.progress-prepend-icon {
position: absolute;
transform: translateY(-50%);
font-size: 20px;
top: 50%;
&:not(:first-child) {
right: -17px;
}
&:not(:last-child) {
left: -17px;
}
}