16 lines
213 B
SCSS
16 lines
213 B
SCSS
#my-panels {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
#my-panel1,
|
|
#my-panel2 {
|
|
text-align: center;
|
|
height: calc(100% - 40px);
|
|
margin: 20px;
|
|
}
|
|
#my-panel1 {
|
|
background: #c9ffb2;
|
|
}
|
|
#my-panel2 {
|
|
background: #ddf2ff;
|
|
} |