42 lines
608 B
SCSS
42 lines
608 B
SCSS
@charset "UTF-8";
|
|
|
|
@import 'variables';
|
|
@import 'mixins';
|
|
|
|
|
|
|
|
.floating-action-button {
|
|
font-size: 24px;
|
|
background-color: $active-color;
|
|
width: 3.6rem;
|
|
height: 3.6rem;
|
|
|
|
&:active {
|
|
background-color: $active-color;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $floating-acton-button-hover-color;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
@include button-shadow;
|
|
@include material-card-radius;
|
|
background-color: $active-button-color;
|
|
|
|
.text-icon-button {
|
|
color: $primary-lighter1-text-color;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
|
|
.modal-root {
|
|
&__modal {
|
|
.media-modal {
|
|
&__close.icon-button {
|
|
font-size: 40px !important;
|
|
}
|
|
}
|
|
}
|
|
} |