#6372: Add opacity utility classes

This commit is contained in:
checktheroads 2021-06-23 11:32:10 -07:00
parent 25b6f02091
commit 0b819053cf
5 changed files with 18 additions and 2 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -77,6 +77,22 @@
line-height: $line-height-sm;
}
.opacity-0 {
opacity: 0 !important;
}
.opacity-25 {
opacity: 0.25 !important;
}
.opacity-50 {
opacity: 0.5 !important;
}
.opacity-75 {
opacity: 0.75 !important;
}
.opacity-100 {
opacity: 1 !important;
}
// Automatically space out adjacent columns.
.col:not(:last-child):not(:only-child) {
margin-bottom: $spacer;