move styles in better place

This commit is contained in:
Mathieu Jaumotte 2022-01-25 15:43:45 +01:00
parent 71293e3378
commit 8fce27a128
2 changed files with 15 additions and 15 deletions

View File

@ -490,18 +490,3 @@ div.popover {
div.v-toast { div.v-toast {
z-index: 10000!important; z-index: 10000!important;
} }
//
div.sticky-buttons {
position: fixed;
bottom: 3em;
right: 2em;
.btn-circle {
width: 50px; height: 50px;
border-radius: 50%;
text-align: center;
padding: 0.45rem 0.7rem;
display: block;
margin-bottom: 0.35rem;
}
}

View File

@ -133,3 +133,18 @@ $chill-theme-buttons: (
.btn-sm, .btn-group-sm > .btn { .btn-sm, .btn-group-sm > .btn {
min-width: 36px; min-width: 36px;
} }
// Homepage special fast action buttons
div.sticky-buttons {
position: fixed;
bottom: 3em;
right: 2em;
.btn-circle {
width: 50px; height: 50px;
border-radius: 50%;
text-align: center;
padding: 0.45rem 0.7rem;
display: block;
margin-bottom: 0.35rem;
}
}