* Revert "Revert "Upgrade Primer CSS to 16 (#18713)""
This reverts commit c01d3e302e.
* Add a hack to handle trashcan icon in translated content
19 lines
377 B
SCSS
19 lines
377 B
SCSS
button.arrow-for-scrolling-top {
|
|
opacity: 0;
|
|
transition: 1s;
|
|
background-color: var(--color-auto-blue-5);
|
|
color: var(--color-text-inverse);
|
|
position: fixed;
|
|
bottom: 10px;
|
|
right: 10px;
|
|
display: block;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
&.show {
|
|
opacity: 1;
|
|
border: none;
|
|
transition: 1s;
|
|
}
|
|
}
|