aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/plugins/plugins.component.scss
diff options
context:
space:
mode:
authorKim <1877318+kimsible@users.noreply.github.com>2020-05-01 00:51:09 +0200
committerGitHub <noreply@github.com>2020-05-01 00:51:09 +0200
commit7a03209d28f3f31d706dee08ae487d2ca1926893 (patch)
treee7d91832a312871d500590601cdde916455ba187 /client/src/app/+admin/plugins/plugins.component.scss
parent0ac458bffb9389d649adcd86038385795bb6ad65 (diff)
downloadPeerTube-7a03209d28f3f31d706dee08ae487d2ca1926893.tar.gz
PeerTube-7a03209d28f3f31d706dee08ae487d2ca1926893.tar.zst
PeerTube-7a03209d28f3f31d706dee08ae487d2ca1926893.zip
Make admin sub-navs, selects, buttons responsive (#2702)
Diffstat (limited to 'client/src/app/+admin/plugins/plugins.component.scss')
-rw-r--r--client/src/app/+admin/plugins/plugins.component.scss26
1 files changed, 26 insertions, 0 deletions
diff --git a/client/src/app/+admin/plugins/plugins.component.scss b/client/src/app/+admin/plugins/plugins.component.scss
index 9f61bcf7a..04ca8126a 100644
--- a/client/src/app/+admin/plugins/plugins.component.scss
+++ b/client/src/app/+admin/plugins/plugins.component.scss
@@ -5,3 +5,29 @@
5 flex-grow: 0; 5 flex-grow: 0;
6 margin-right: 30px; 6 margin-right: 30px;
7} 7}
8
9@media screen and (max-width: $small-view) {
10 ::ng-deep .plugins .plugin .first-row {
11 flex-wrap: wrap;
12
13 .plugin-name,
14 .plugin-version,
15 .plugin-icon {
16 margin-bottom: 10px;
17 }
18
19 .buttons {
20 my-edit-button,
21 my-delete-button,
22 my-button {
23 .action-button {
24 padding: 0 13px;
25 }
26
27 .button-label {
28 display: none;
29 }
30 }
31 }
32 }
33}