remove info panel (#721)

* refactor: remove info panel

* chore: update tests
This commit is contained in:
Carlos Valente
2024-01-19 14:08:32 +01:00
committed by GitHub
parent 3c1be1fc10
commit fc5800bc21
9 changed files with 5 additions and 183 deletions
@@ -46,17 +46,16 @@ $playback-width: 26rem;
display: grid;
grid-template-rows: auto 1fr;
grid-template-columns: $rundown-width $playback-width 1fr;
grid-template-columns: 1fr $playback-width;
grid-template-areas:
'rundown play info'
'rundown mess info';
'rundown play'
'rundown mess';
gap: 0.5rem;
overflow: hidden;
.rundown,
.playback,
.messages,
.info {
.messages {
position: relative;
border-radius: 8px;
height: 100%;
@@ -72,6 +71,7 @@ $playback-width: 26rem;
.rundown {
grid-area: rundown;
min-width: $rundown-width;
.content {
height: calc(100% - 1.5rem);
@@ -79,18 +79,6 @@ $playback-width: 26rem;
}
}
.info {
grid-area: info;
min-width: 17rem;
max-width: 800px;
.content {
display: flex;
flex-direction: column;
overflow: hidden;
}
}
.messages {
grid-area: mess;
min-width: 24rem;