rtc

minimal webrtc client
git clone https://git.ce9e.org/rtc.git

commit
60835e7a1f45a4657484689fa009115aba4681b6
parent
aaa05a04794f443ec8a944328d0a59849f290959
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-04-29 06:00
fix height edge cases

no border below chat box on small height

Diffstat

M static/rtc.css 6 +++---

1 files changed, 3 insertions, 3 deletions


diff --git a/static/rtc.css b/static/rtc.css

@@ -1,7 +1,7 @@
    1     1 body {
    2     2 	display: grid;
    3    -1 	grid-template-rows: 12em minmax(12em, auto);
    4    -1 	height: 100vh;
   -1     3 	grid-template-rows: 12em auto;
   -1     4 	min-height: 100vh;
    5     5 }
    6     6 
    7     7 .rtc {
@@ -70,7 +70,7 @@ video.mirrored {
   70    70 @media (min-width: 40em) {
   71    71 	body {
   72    72 		grid-template-columns: 3fr minmax(min-content, 1fr);
   73    -1 		grid-template-rows: 100vh;
   -1    73 		grid-template-rows: 1fr;
   74    74 	}
   75    75 	.chat {
   76    76 		border-top-width: 0;