Fix global timeline display option #109
This commit is contained in:
parent
fe1e4632b2
commit
5a32881afd
@ -9,6 +9,10 @@ body {
|
||||
max-height: calc(100vh - 20px);
|
||||
}
|
||||
|
||||
.column .panel.draft, .column .panel.options {
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
|
@ -151,7 +151,7 @@ draftView ({ draft, currentUser } as model) =
|
||||
limitExceeded =
|
||||
charCount > 500
|
||||
in
|
||||
div [ class "panel panel-default" ]
|
||||
div [ class "panel panel-default draft" ]
|
||||
[ div [ class "panel-heading" ]
|
||||
[ Common.icon "envelope"
|
||||
, text <|
|
||||
|
@ -9,7 +9,7 @@ import View.Common as Common
|
||||
|
||||
settingsView : Model -> Html Msg
|
||||
settingsView model =
|
||||
div [ class "panel panel-default" ]
|
||||
div [ class "panel panel-default options" ]
|
||||
[ div [ class "panel-heading" ] [ Common.icon "cog", text "options" ]
|
||||
, div [ class "panel-body" ]
|
||||
[ div [ class "checkbox" ]
|
||||
|
Loading…
Reference in New Issue
Block a user