Spaces:
Running
Running
File size: 1,005 Bytes
9b84add e8be1f9 9b84add e8be1f9 9b84add e8be1f9 9b84add e8be1f9 9b84add e8be1f9 9b84add | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | .dual-screen-container {
display: flex;
height: calc(100vh - 64px);
width: 100%;
overflow: hidden;
}
.screen {
flex: 1;
padding: 2rem;
overflow-y: auto;
transition: all 0.3s ease;
}
.left-screen {
border-right: 1px solid #e5e7eb;
background-color: #f9fafb;
}
.right-screen {
background-color: #ffffff;
}
.screen-content {
max-width: 1200px;
margin: 0 auto;
}
.preview-area {
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
}
.mockup-device {
border: 16px solid;
border-radius: 36px;
position: relative;
width: 300px;
height: 600px;
}
.mockup-screen {
width: 100%;
height: 100%;
border-radius: 20px;
}
@media (max-width: 1024px) {
.dual-screen-container {
flex-direction: column;
}
.screen {
flex: none;
height: 50vh;
}
.left-screen {
border-right: none;
border-bottom: 1px solid #e5e7eb;
}
} |