1
0
Fork 0
freesewing/packages/css-theme/src/components/_fab.scss

26 lines
452 B
SCSS
Raw Normal View History

2019-05-25 11:12:06 +02:00
button.fab {
position: fixed;
bottom: 1rem;
width: 64px;
height: 64px!important;
z-index: 20;
font-size: 2rem;
border-radius: 50%;
2019-05-25 11:12:06 +02:00
}
button.fab.primary {
right: 1rem;
}
2020-01-04 14:21:15 +01:00
.style-wrapper.light,
.theme-wrapper.light,
.style-wrapper.dark,
.theme-wrapper.dark {
button.fab.accent {
background-color: $fc-accent-light;
color: $fc-text-dark;
}
button.fab.accent:hover {
background-color: darken($fc-accent-light, 10%);
}
2019-05-25 11:12:06 +02:00
}