1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00
vault-frontend/src/containers/main/BottomContainer/styles.scss
Fedor Katurov 3fdf14d680 submit bar
2019-10-16 10:10:27 +07:00

30 lines
513 B
SCSS

.wrap {
position: fixed;
transform: translateZ(0);
bottom: 0;
pointer-events: none;
touch-action: none;
height: $bar_height;
display: flex;
z-index: 10;
width: 100%;
left: 0;
align-items: center;
justify-content: center;
padding: 0 $gap;
box-sizing: border-box;
}
.content {
position: relative;
flex: 0 1 $content_width;
height: $bar_height;
display: flex;
align-items: center;
justify-content: flex-end;
& > div {
pointer-events: all;
touch-action: all;
}
}