xi-conversations

Minimal clone of thunderbird conversations
git clone https://git.ce9e.org/xi-conversations.git

commit
c9c0af7a5a0a62ba0fe8330194859ce75c3f60fe
parent
dc5c264ed08effaa27b1cbd4d84ac71c22cb7bdb
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-10-04 11:44
layout: use grid instead of flex

Diffstat

M src/scss/components/_conversation.scss 7 ++-----

1 files changed, 2 insertions, 5 deletions


diff --git a/src/scss/components/_conversation.scss b/src/scss/components/_conversation.scss

@@ -1,6 +1,6 @@
    1     1 body {
    2    -1 	display: flex;
    3    -1 	flex-direction: column;
   -1     2 	display: grid;
   -1     3 	grid-template-rows: min-content 1fr;
    4     4 	background: Window;
    5     5 	height: 100vh;
    6     6 	margin: 0;
@@ -12,12 +12,9 @@ body {
   12    12 	background-color: Menu;
   13    13 	color: MenuText;
   14    14 	border-bottom: 1px solid ThreeDShadow;
   15    -1 	flex-grow: 0;
   16    -1 	z-index: 1;
   17    15 }
   18    16 
   19    17 .conversation__main {
   20    -1 	flex-grow: 1;
   21    18 	overflow-y: scroll;
   22    19 	padding: 0.5em;
   23    20 }