File size: 258 Bytes
973d6a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.app-layout {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 0.5rem;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .app-layout {
        flex-direction: column;
    }
}