23 lines
454 B
SCSS
23 lines
454 B
SCSS
![]() |
button.fab {
|
||
|
position: fixed;
|
||
|
bottom: 1rem;
|
||
|
width: 64px;
|
||
|
height: 64px!important;
|
||
|
background: $fc-text-light!important;
|
||
|
z-index: 20;
|
||
|
font-size: 2rem;
|
||
|
}
|
||
|
button.fab.primary {
|
||
|
right: 1rem;
|
||
|
}
|
||
|
button.fab.secondary {
|
||
|
right: calc(1rem + 69px);
|
||
|
background: $fc-link-light!important;
|
||
|
}
|
||
|
.theme-wrapper.dark button.fab {
|
||
|
background: $fc-text-dark!important;
|
||
|
}
|
||
|
.theme-wrapper.dark button.fab.secondary {
|
||
|
background: $fc-link-dark!important;
|
||
|
}
|