Added style classes to represent left and right justified floating button groups

This commit is contained in:
atownson
2024-09-23 13:04:44 -05:00
parent 30e67047d3
commit 3b8a3dc66a
5 changed files with 15 additions and 7 deletions

View File

@@ -37,10 +37,18 @@ span.color-label {
// A floating div for form buttons
.btn-float-group {
position: sticky;
bottom: 0px;
z-index: 1;
bottom: 10px;
z-index: 2;
}
.btn-float-group-left {
@extend .btn-float-group;
float: left;
}
.btn-float-group-right {
@extend .btn-float-group;
float: right;
padding: 0 0 10px;
}
// Override a transparent background