|
@@ -1669,9 +1669,15 @@ export default {
|
|
|
};
|
|
|
if(this.marginTop > 38) {
|
|
|
if(this.marginTop < 58) {
|
|
|
- containerStyle = {
|
|
|
- marginTop: (this.marginTop + 15) + 'px',
|
|
|
- };
|
|
|
+ if(this.marginTop == 48) {
|
|
|
+ containerStyle = {
|
|
|
+ marginTop: this.marginTop + 'px',
|
|
|
+ };
|
|
|
+ }else {
|
|
|
+ containerStyle = {
|
|
|
+ marginTop: (this.marginTop + 15) + 'px',
|
|
|
+ };
|
|
|
+ }
|
|
|
}else {
|
|
|
if(window.devicePixelRatio < 1) {
|
|
|
containerStyle = {
|