GPN21: fix background with scaling

This commit is contained in:
Evelyn Alicke 2023-06-02 22:33:38 +02:00
parent 8b0cecd66b
commit 4b8108c0d4

View file

@ -19,7 +19,7 @@
.background() {
background-image: url(dip8-clean-margins.svg), url(dip8-clean-margins.svg);
background-size: 10%;
background-position: 0 0, 240px 240px;
background-position: top 0px right 0px, top 5vi right 5vi;
background-scale: space;
}
@ -62,7 +62,8 @@ body.room {
}
.talk {
width: max-content;
width: 100%;
min-width: 320px;
}
.panel {
@ -111,6 +112,15 @@ body.room {
}
}
.room > * > .panel > .panel-body {
display: flex;
flex-wrap: wrap;
& > .program-schedule {
flex-basis: min-content;
flex-grow: 1;
}
}
a {
color: @orange;
}