mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 21:10:12 +02:00
c1330d92b2
* mantine v8 migration * various design changes and improvements
22 lines
451 B
CSS
22 lines
451 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 10vh 0 50vh;
|
|
overflow: scroll;
|
|
word-break: break-all;
|
|
mask-image: linear-gradient(
|
|
180deg,
|
|
transparent 5%,
|
|
rgb(0 0 0 / 100%) 20%,
|
|
rgb(0 0 0 / 100%) 85%,
|
|
transparent 95%
|
|
);
|
|
transform: translateY(-2rem);
|
|
|
|
@media screen and (orientation: portrait) {
|
|
padding: 5vh 0;
|
|
}
|
|
}
|