css: Fix adaptive message list

Somewhere between now and the previous release,
Fractal's message list lost it's adaptive padding.
Now we can use HdyClamp's CSS to bring it back.
This commit is contained in:
Christopher Davis 2020-11-07 17:28:50 -08:00 committed by Daniel Garcia Moreno
parent 4342e832af
commit 14b81bfd51

View file

@ -156,7 +156,12 @@ row:not(:selected) .member-uid {
.messages-history {
background-color: @theme_base_color;
padding: 0 18px 18px;
padding: 0px 18px 18px;
}
clamp.small > box > .messages-history {
padding-left: 12px;
padding-right: 12px;
}
.history-view {