mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
30 lines
513 B
SCSS
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;
|
|
}
|
|
}
|