diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-17 15:45:42 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-27 09:41:54 +0200 |
commit | 8a19bee1a1ee39f973bb37429e4f73c3f2873cdb (patch) | |
tree | 33c93ef19451d7e46d4be74ce0681359d2dcc70e /client/src/sass | |
parent | 965c4b22d0e4d2f853501e844e6ebbb861bd389d (diff) | |
download | PeerTube-8a19bee1a1ee39f973bb37429e4f73c3f2873cdb.tar.gz PeerTube-8a19bee1a1ee39f973bb37429e4f73c3f2873cdb.tar.zst PeerTube-8a19bee1a1ee39f973bb37429e4f73c3f2873cdb.zip |
Add ability to set a name to a channel
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 3d518394a..b0b0f544c 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -36,9 +36,16 @@ | |||
36 | border-radius: 3px; | 36 | border-radius: 3px; |
37 | padding-left: 15px; | 37 | padding-left: 15px; |
38 | padding-right: 15px; | 38 | padding-right: 15px; |
39 | } | ||
39 | 40 | ||
40 | &::placeholder { | 41 | @mixin peertube-input-group($width) { |
41 | color: #585858; | 42 | width: $width; |
43 | height: $button-height; | ||
44 | padding-top: 0; | ||
45 | padding-bottom: 0; | ||
46 | |||
47 | .input-group-text{ | ||
48 | font-size: 14px; | ||
42 | } | 49 | } |
43 | } | 50 | } |
44 | 51 | ||