Make watermark size configurable
This commit is contained in:
parent
05f8c69fe6
commit
b9f2ab7692
|
@ -80,8 +80,8 @@ form {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 15;
|
top: 15;
|
||||||
width: 186px;
|
width: $watermarkWidth;
|
||||||
height: 74px;
|
height: $watermarkHeight;
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
z-index: $zindex2;
|
z-index: $zindex2;
|
||||||
|
|
|
@ -145,3 +145,9 @@ $unsupportedBrowserTitleColor: #fff;
|
||||||
$unsupportedBrowserTitleFontSize: 24px;
|
$unsupportedBrowserTitleFontSize: 24px;
|
||||||
$unsupportedDesktopBrowserTextColor: rgba(255, 255, 255, 0.7);
|
$unsupportedDesktopBrowserTextColor: rgba(255, 255, 255, 0.7);
|
||||||
$unsupportedDesktopBrowserTextFontSize: 21px;
|
$unsupportedDesktopBrowserTextFontSize: 21px;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The size of the default watermark.
|
||||||
|
*/
|
||||||
|
$watermarkWidth: 186px;
|
||||||
|
$watermarkHeight: 74px;
|
Loading…
Reference in New Issue