@tolokoban/ui
Version:
React components with theme
30 lines (25 loc) • 386 B
CSS
.container {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
display: grid;
justify-items: center;
align-items: center;
overflow: auto;
pointer-events: all;
z-index: 999999;
backdrop-filter: blur(1px);
}
.L {
justify-items: start;
}
.R {
justify-items: end;
}
.T {
align-items: start;
}
.B {
align-items: end;
}