fix style

This commit is contained in:
kangwei 2020-04-21 23:19:25 +08:00
parent 7cf157d742
commit 8a977da5a8
2 changed files with 3 additions and 2 deletions

View File

@ -34,8 +34,8 @@ export default class Area<C extends IWidgetBaseConfig = any, T extends IWidget =
if (flag && !current) { if (flag && !current) {
this.container.active(this.lastCurrent || this.container.getAt(0)) this.container.active(this.lastCurrent || this.container.getAt(0))
} else if (current) { } else if (current) {
this.lastCurrent = this.container.current; this.lastCurrent = current;
this.container.unactive(); this.container.unactive(current);
} }
return; return;
} }

View File

@ -225,6 +225,7 @@ body {
position: absolute; position: absolute;
right: 10px; right: 10px;
top: 6px; top: 6px;
z-index: 2;
.next-icon{ .next-icon{
line-height: 1; line-height: 1;
} }