diff options
author | Guillermo Ramos | 2020-02-12 16:17:23 +0100 |
---|---|---|
committer | Guillermo Ramos | 2020-02-12 17:29:24 +0100 |
commit | 31f6eac1a6d81e217095e8e6aa4935bfd43c98b2 (patch) | |
tree | 930a4d05e94d601442ab1883f11fdac98389d172 /assets | |
parent | 9f6af45d54a6a6ac0297969034212ad845c104ce (diff) | |
download | waev-31f6eac1a6d81e217095e8e6aa4935bfd43c98b2.tar.gz |
Group messages by date
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/app.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/assets/css/app.css b/assets/css/app.css index 4bfd6cb..1650646 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -39,10 +39,13 @@ body { } .row { - margin-top: 10px; + margin-top: 6px; display: flex; align-items: center; } +.row--padded { + margin-top: 12px; +} .row-left { flex-direction: row; } @@ -50,6 +53,14 @@ body { flex-direction: row-reverse; } +.date-box { + background-color: #666; + color: white; + padding: 4px 12px 4px 12px; + border-radius: 12px; + box-shadow: 1px 1px 2px grey; +} + .white-box { background-color: white; border-radius: 5px; |