diff options
Diffstat (limited to 'assets_src')
-rw-r--r-- | assets_src/css/materialize_extend.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/assets_src/css/materialize_extend.css b/assets_src/css/materialize_extend.css index f06d042..46f92ee 100644 --- a/assets_src/css/materialize_extend.css +++ b/assets_src/css/materialize_extend.css | |||
@@ -1,3 +1,23 @@ | |||
1 | span.badge.new.no-caption::after { | 1 | span.badge.new.no-caption::after { |
2 | content: ""; | 2 | content: ""; |
3 | } | 3 | } |
4 | |||
5 | /* some flexy flexbox stuff */ | ||
6 | .flex { | ||
7 | display: flex; | ||
8 | flex-direction: row; | ||
9 | flex-wrap: wrap; | ||
10 | align-items: stretch; | ||
11 | } | ||
12 | |||
13 | .flex .flex-card { | ||
14 | display: flex; | ||
15 | margin-right: 16px; | ||
16 | max-width: 400px; | ||
17 | } | ||
18 | |||
19 | .flex .flex-card .card { | ||
20 | display: flex; | ||
21 | flex-direction: column; | ||
22 | justify-content: space-between; | ||
23 | } | ||