1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00
vault-frontend/src/components/common/ScrollHelperBottom/styles.module.scss
2022-01-10 16:47:29 +07:00

26 lines
532 B
SCSS

@import "src/styles/variables";
.helper {
position: fixed;
bottom: 0;
background: radial-gradient($red, transparent) 50% 24px no-repeat;
background-size: 100% 48px;
display: none;
width: calc(100% - 20px);
z-index: 4;
text-align: center;
max-width: 500px;
height: 64px;
align-items: flex-end;
justify-content: center;
padding: $gap;
text-transform: uppercase;
font: $font_16_medium;
border-radius: $radius $radius 0 0;
user-select: none;
cursor: pointer;
&.visible {
display: flex;
}
}