29 lines
474 B
SCSS
29 lines
474 B
SCSS
.scroll-button {
|
|
background-color: var(--iqser-white);
|
|
position: absolute;
|
|
right: 0;
|
|
height: 40px;
|
|
width: 44px;
|
|
border: none;
|
|
border-radius: 8px 0 0 8px;
|
|
box-shadow: -1px 1px 5px 0 rgba(40, 50, 65, 0.25);
|
|
|
|
&.bottom {
|
|
bottom: 30px;
|
|
}
|
|
|
|
&.top {
|
|
top: 100px;
|
|
|
|
mat-icon {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
mat-icon {
|
|
width: 22px;
|
|
height: 22px;
|
|
color: var(--iqser-disabled);
|
|
}
|