Merge pull request #1951 from jitsi/watermark-config

Make watermark size configurable
This commit is contained in:
virtuacoplenny 2017-08-30 13:01:37 -07:00 committed by GitHub
commit a94e38e890
2 changed files with 8 additions and 2 deletions

View File

@ -80,8 +80,8 @@ form {
display: block;
position: absolute;
top: 15;
width: 186px;
height: 74px;
width: $watermarkWidth;
height: $watermarkHeight;
background-size: contain;
background-repeat: no-repeat;
z-index: $zindex2;

View File

@ -145,3 +145,9 @@ $unsupportedBrowserTitleColor: #fff;
$unsupportedBrowserTitleFontSize: 24px;
$unsupportedDesktopBrowserTextColor: rgba(255, 255, 255, 0.7);
$unsupportedDesktopBrowserTextFontSize: 21px;
/**
* The size of the default watermark.
*/
$watermarkWidth: 186px;
$watermarkHeight: 74px;