diff options
author | Chocobozzz <me@florianbigard.com> | 2021-06-29 15:17:01 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-06-29 15:17:01 +0200 |
commit | 24893b524c47b8f89090192aa38126352a952808 (patch) | |
tree | 25fffe8b49fe0b6d481abd7e0f92f7af11bebcd4 /client/src/sass/custom-markup.scss | |
parent | d4a8e7a65f97bb3257facc13e1ae8ffdbad61ddb (diff) | |
download | PeerTube-24893b524c47b8f89090192aa38126352a952808.tar.gz PeerTube-24893b524c47b8f89090192aa38126352a952808.tar.zst PeerTube-24893b524c47b8f89090192aa38126352a952808.zip |
Fix peertube container in markdown preview
Diffstat (limited to 'client/src/sass/custom-markup.scss')
-rw-r--r-- | client/src/sass/custom-markup.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/client/src/sass/custom-markup.scss b/client/src/sass/custom-markup.scss new file mode 100644 index 000000000..d1729dbda --- /dev/null +++ b/client/src/sass/custom-markup.scss | |||
@@ -0,0 +1,20 @@ | |||
1 | peertube-container { | ||
2 | > .layout-row { | ||
3 | display: flex; | ||
4 | flex-direction: row; | ||
5 | flex-wrap: wrap; | ||
6 | } | ||
7 | |||
8 | > .layout-column { | ||
9 | display: flex; | ||
10 | flex-direction: column; | ||
11 | } | ||
12 | |||
13 | > .header { | ||
14 | margin: 30px 0 15px; | ||
15 | |||
16 | > h4 { | ||
17 | margin-bottom: 0; | ||
18 | } | ||
19 | } | ||
20 | } | ||